Skip to content

Commit da51c28

Browse files
chore(deps): bump github.com/opencontainers/selinux from 1.12.0 to 1.13.0 (#1919)
* chore(deps): bump github.com/opencontainers/selinux Bumps [github.com/opencontainers/selinux](https://github.com/opencontainers/selinux) from 1.12.0 to 1.13.0. - [Release notes](https://github.com/opencontainers/selinux/releases) - [Commits](opencontainers/selinux@v1.12.0...v1.13.0) --- updated-dependencies: - dependency-name: github.com/opencontainers/selinux dependency-version: 1.13.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Fix go vet failure in CI on Linux - Add go mod download before make vet in CI to ensure modules are available - Remove vendor directory (not needed, was causing vendoring inconsistencies) - Remove cache: false from all workflow files (not needed, enables caching) - Add replace directive for filepath-securejoin to fix containers/storage build - Clean up go.mod formatting and workflow improvements * downgrade filepath-securejoin --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xav Paice <[email protected]>
1 parent c76b0ab commit da51c28

File tree

5 files changed

+16
-51
lines changed

5 files changed

+16
-51
lines changed

.github/actions/setup-go/action.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/build-test.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ jobs:
4545
timeout-minutes: 10
4646
steps:
4747
- uses: actions/checkout@v5
48-
- uses: ./.github/actions/setup-go
48+
- uses: actions/setup-go@v6
49+
with:
50+
go-version-file: 'go.mod'
4951

5052
- name: Check go mod tidy
5153
run: |
@@ -72,7 +74,9 @@ jobs:
7274
timeout-minutes: 20
7375
steps:
7476
- uses: actions/checkout@v5
75-
- uses: ./.github/actions/setup-go
77+
- uses: actions/setup-go@v6
78+
with:
79+
go-version-file: 'go.mod'
7680

7781
- name: Setup K3s
7882
uses: replicatedhq/action-k3s@main
@@ -90,7 +94,9 @@ jobs:
9094
timeout-minutes: 10
9195
steps:
9296
- uses: actions/checkout@v5
93-
- uses: ./.github/actions/setup-go
97+
- uses: actions/setup-go@v6
98+
with:
99+
go-version-file: 'go.mod'
94100
- run: make build
95101
- uses: actions/upload-artifact@v5
96102
with:

.github/workflows/regression-test.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ jobs:
4040
- name: Setup Go
4141
uses: actions/setup-go@v6
4242
with:
43-
go-version-file: go.mod
44-
cache: true
45-
cache-dependency-path: go.sum
43+
go-version-file: 'go.mod'
4644

4745
- name: Build binaries
4846
run: |

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ require (
104104
github.com/containerd/platforms v0.2.1 // indirect
105105
github.com/containerd/typeurl/v2 v2.2.3 // indirect
106106
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
107+
github.com/cyphar/filepath-securejoin v0.5.1 // indirect
107108
github.com/distribution/reference v0.6.0 // indirect
108109
github.com/docker/distribution v2.8.3+incompatible // indirect
109110
github.com/ebitengine/purego v0.9.0 // indirect
@@ -196,7 +197,6 @@ require (
196197
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 // indirect
197198
github.com/containers/ocicrypt v1.2.1 // indirect
198199
github.com/containers/storage v1.59.1 // indirect
199-
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
200200
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
201201
github.com/docker/cli v28.5.1+incompatible // indirect
202202
github.com/docker/docker v28.5.1+incompatible // indirect
@@ -245,7 +245,7 @@ require (
245245
github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d // indirect
246246
github.com/opencontainers/go-digest v1.0.0 // indirect
247247
github.com/opencontainers/runtime-spec v1.3.0
248-
github.com/opencontainers/selinux v1.12.0 // indirect
248+
github.com/opencontainers/selinux v1.13.1 // indirect
249249
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
250250
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
251251
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSV
181181
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
182182
github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY=
183183
github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4=
184-
github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s=
185-
github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI=
184+
github.com/cyphar/filepath-securejoin v0.5.1 h1:eYgfMq5yryL4fbWfkLpFFy2ukSELzaJOTaUTuh+oF48=
185+
github.com/cyphar/filepath-securejoin v0.5.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI=
186186
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
187187
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
188188
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -522,8 +522,8 @@ github.com/opencontainers/image-spec v1.1.1 h1:y0fUlFfIZhPF1W537XOLg0/fcx6zcHCJw
522522
github.com/opencontainers/image-spec v1.1.1/go.mod h1:qpqAh3Dmcf36wStyyWU+kCeDgrGnAve2nCC8+7h8Q0M=
523523
github.com/opencontainers/runtime-spec v1.3.0 h1:YZupQUdctfhpZy3TM39nN9Ika5CBWT5diQ8ibYCRkxg=
524524
github.com/opencontainers/runtime-spec v1.3.0/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
525-
github.com/opencontainers/selinux v1.12.0 h1:6n5JV4Cf+4y0KNXW48TLj5DwfXpvWlxXplUkdTrmPb8=
526-
github.com/opencontainers/selinux v1.12.0/go.mod h1:BTPX+bjVbWGXw7ZZWUbdENt8w0htPSrlgOOysQaU62U=
525+
github.com/opencontainers/selinux v1.13.1 h1:A8nNeceYngH9Ow++M+VVEwJVpdFmrlxsN22F+ISDCJE=
526+
github.com/opencontainers/selinux v1.13.1/go.mod h1:S10WXZ/osk2kWOYKy1x2f/eXF5ZHJoUs8UU/2caNRbg=
527527
github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4=
528528
github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
529529
github.com/peterbourgon/diskv v2.0.1+incompatible h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=

0 commit comments

Comments
 (0)