Skip to content

Commit aa23d41

Browse files
authored
Update runc to v1.1.10 (#19066)
* Update runc to v1.1.10 * Update go modules
1 parent 205d36d commit aa23d41

File tree

8 files changed

+10
-16
lines changed

8 files changed

+10
-16
lines changed

components/local-app/go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ require (
3030
github.com/bufbuild/connect-go v1.10.0
3131
github.com/gitpod-io/gitpod/components/public-api/go v0.0.0-00010101000000-000000000000
3232
github.com/gookit/color v1.5.4
33+
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf
3334
github.com/lmittmann/tint v1.0.3
3435
github.com/mattn/go-isatty v0.0.17
3536
github.com/sagikazarmark/slog-shim v0.1.0
@@ -51,17 +52,14 @@ require (
5152
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
5253
github.com/go-git/go-billy/v5 v5.5.0 // indirect
5354
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
54-
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf // indirect
5555
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
5656
github.com/json-iterator/go v1.1.12 // indirect
57-
github.com/kr/binarydist v0.1.0 // indirect
5857
github.com/kr/fs v0.1.0 // indirect
5958
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6059
github.com/pjbgf/sha1cd v0.3.0 // indirect
6160
github.com/pkg/errors v0.9.1 // indirect
6261
github.com/pkg/sftp v1.13.5 // indirect
6362
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
64-
github.com/sanbornm/go-selfupdate v0.0.0-20230714125711-e1c03e3d6ac7 // indirect
6563
github.com/segmentio/backo-go v1.0.0 // indirect
6664
github.com/sergi/go-diff v1.1.0 // indirect
6765
github.com/skeema/knownhosts v1.2.0 // indirect
@@ -90,7 +88,7 @@ require (
9088
github.com/russross/blackfriday/v2 v2.1.0 // indirect
9189
github.com/segmentio/analytics-go/v3 v3.3.0
9290
github.com/sourcegraph/jsonrpc2 v0.0.0-20200429184054-15c2290dcb37 // indirect
93-
github.com/spf13/pflag v1.0.5 // indirect
91+
github.com/spf13/pflag v1.0.5
9492
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
9593
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
9694
golang.org/x/net v0.17.0 // indirect

components/local-app/go.sum

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/ws-daemon/debug.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN go get -u github.com/go-delve/delve/cmd/dlv
99
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:a7db49b55bd97c12cd686272325bbac236830111db336e084b89f5c816ab0537 as dl
1010
WORKDIR /dl
1111
RUN apk add --no-cache curl file \
12-
&& curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.9/runc.amd64 \
12+
&& curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.10/runc.amd64 \
1313
&& chmod +x runc.amd64 \
1414
&& if ! file runc.amd64 | grep -iq "ELF 64-bit LSB pie executable"; then echo "runc.amd64 is not a binary file"; exit 1;fi
1515

components/ws-daemon/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require (
2424
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb
2525
github.com/onsi/ginkgo/v2 v2.9.5
2626
github.com/onsi/gomega v1.27.7
27-
github.com/opencontainers/runc v1.1.9
27+
github.com/opencontainers/runc v1.1.10
2828
github.com/opencontainers/runtime-spec v1.1.0
2929
github.com/opentracing/opentracing-go v1.2.0
3030
github.com/prometheus/client_golang v1.16.0

components/ws-daemon/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/ws-daemon/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:5fd82be4dfccc650c1985d57847f1af556bf23a8a5d86ec5fddf7d417ab147a4 as dl
66
WORKDIR /dl
77
RUN apk add --no-cache curl file \
8-
&& curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.9/runc.amd64 \
8+
&& curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.10/runc.amd64 \
99
&& chmod +x runc.amd64 \
1010
&& if ! file runc.amd64 | grep -iq "ELF 64-bit LSB pie executable"; then echo "runc.amd64 is not a binary file"; exit 1;fi
1111

install/installer/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ require (
217217
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
218218
github.com/opencontainers/go-digest v1.0.0 // indirect
219219
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
220-
github.com/opencontainers/runc v1.1.9 // indirect
220+
github.com/opencontainers/runc v1.1.10 // indirect
221221
github.com/opencontainers/runtime-spec v1.1.0 // indirect
222222
github.com/opencontainers/selinux v1.11.0 // indirect
223223
github.com/opentracing/opentracing-go v1.2.0 // indirect

install/installer/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)