Skip to content

Commit 8fff6f8

Browse files
chore: Upgrade selinux version to 1.13.0 (runfinch#1620)
* chore: Upgrade selinux version to 1.13.0 Signed-off-by: Shubhranshu Mahapatra <shubhum@amazon.com> * chore: add MPL 2.0 license to the allowlist Signed-off-by: Shubhranshu Mahapatra <shubhum@amazon.com> --------- Signed-off-by: Shubhranshu Mahapatra <shubhum@amazon.com>
1 parent b537d8c commit 8fff6f8

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ check-licenses: GOBIN = $(CURDIR)/tools_bin
286286
check-licenses:
287287
go mod download
288288
GOBIN=$(GOBIN) go install github.com/google/go-licenses
289-
$(GOBIN)/go-licenses check --ignore golang.org/x,github.com/runfinch/finch --ignore github.com/multiformats/go-base36 --allowed_licenses Apache-2.0,BSD-2-Clause,BSD-3-Clause,ISC,MIT --include_tests ./...
289+
$(GOBIN)/go-licenses check --ignore golang.org/x,github.com/runfinch/finch --ignore github.com/multiformats/go-base36 --allowed_licenses Apache-2.0,BSD-2-Clause,BSD-3-Clause,ISC,MIT,MPL-2.0 --include_tests ./...
290290

291291
COVERAGE_THRESH = 60
292292
.PHONY: test-unit

go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ require (
3434
)
3535

3636
require (
37+
cyphar.com/go-pathrs v0.2.1 // indirect
3738
github.com/Masterminds/semver/v3 v3.4.0 // indirect
3839
github.com/Microsoft/go-winio v0.6.2 // indirect
3940
github.com/Microsoft/hcsshim v0.13.0 // indirect
@@ -63,6 +64,7 @@ require (
6364
github.com/coreos/go-semver v0.3.1 // indirect
6465
github.com/coreos/go-systemd/v22 v22.6.0 // indirect
6566
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
67+
github.com/cyphar/filepath-securejoin v0.6.0 // indirect
6668
github.com/dimchansky/utfbom v1.1.1 // indirect
6769
github.com/distribution/reference v0.6.0 // indirect
6870
github.com/docker/docker-credential-helpers v0.8.2 // indirect
@@ -108,7 +110,7 @@ require (
108110
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
109111
github.com/opencontainers/image-spec v1.1.1 // indirect
110112
github.com/opencontainers/runtime-spec v1.2.1 // indirect
111-
github.com/opencontainers/selinux v1.12.0 // indirect
113+
github.com/opencontainers/selinux v1.13.0 // indirect
112114
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
113115
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
114116
github.com/pkg/errors v0.9.1 // indirect
@@ -170,3 +172,5 @@ require (
170172
golang.org/x/text v0.29.0
171173
k8s.io/klog/v2 v2.130.1 // indirect
172174
)
175+
176+
replace cyphar.com/go-pathrs => github.com/cyphar/libpathrs/go-pathrs v0.2.1

go.sum

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ github.com/coreos/go-systemd/v22 v22.6.0/go.mod h1:iG+pp635Fo7ZmV/j14KUcmEyWF+0X
7878
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
7979
github.com/cpuguy83/go-md2man/v2 v2.0.7 h1:zbFlGlXEAKlwXpmvle3d8Oe3YnkKIK4xSRTd3sHPnBo=
8080
github.com/cpuguy83/go-md2man/v2 v2.0.7/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
81+
github.com/cyphar/filepath-securejoin v0.6.0 h1:BtGB77njd6SVO6VztOHfPxKitJvd/VPT+OFBFMOi1Is=
82+
github.com/cyphar/filepath-securejoin v0.6.0/go.mod h1:A8hd4EnAeyujCJRrICiOWqjS1AX0a9kM5XL+NwKoYSc=
83+
github.com/cyphar/libpathrs/go-pathrs v0.2.1 h1:Hqa7YmpktB5d6a8o5sjST6gXvFuSFHMXZgXbNhxz6zI=
84+
github.com/cyphar/libpathrs/go-pathrs v0.2.1/go.mod h1:y8f1EMG7r+hCuFf/rXsKqMJrJAUoADZGNh5/vZPKcGc=
8185
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
8286
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
8387
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -256,8 +260,8 @@ github.com/opencontainers/image-spec v1.1.1 h1:y0fUlFfIZhPF1W537XOLg0/fcx6zcHCJw
256260
github.com/opencontainers/image-spec v1.1.1/go.mod h1:qpqAh3Dmcf36wStyyWU+kCeDgrGnAve2nCC8+7h8Q0M=
257261
github.com/opencontainers/runtime-spec v1.2.1 h1:S4k4ryNgEpxW1dzyqffOmhI1BHYcjzU8lpJfSlR0xww=
258262
github.com/opencontainers/runtime-spec v1.2.1/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
259-
github.com/opencontainers/selinux v1.12.0 h1:6n5JV4Cf+4y0KNXW48TLj5DwfXpvWlxXplUkdTrmPb8=
260-
github.com/opencontainers/selinux v1.12.0/go.mod h1:BTPX+bjVbWGXw7ZZWUbdENt8w0htPSrlgOOysQaU62U=
263+
github.com/opencontainers/selinux v1.13.0 h1:Zza88GWezyT7RLql12URvoxsbLfjFx988+LGaWfbL84=
264+
github.com/opencontainers/selinux v1.13.0/go.mod h1:XxWTed+A/s5NNq4GmYScVy+9jzXhGBVEOAyucdRUY8s=
261265
github.com/otiai10/copy v1.14.0 h1:dCI/t1iTdYGtkvCuBG2BgR6KZa83PTclw4U5n2wAllU=
262266
github.com/otiai10/copy v1.14.0/go.mod h1:ECfuL02W+/FkTWZWgQqXPWZgW9oeKCSQ5qVfSc4qc4w=
263267
github.com/otiai10/mint v1.5.1 h1:XaPLeE+9vGbuyEHem1JNk3bYc7KKqyI/na0/mLd/Kks=

0 commit comments

Comments
 (0)