Skip to content

Commit 92853b5

Browse files
authored
Update runc to v1.1.9 (#18495)
* Update runc to v1.1.9 * Update runc to v1.1.9 * Update runc test
1 parent 53835b8 commit 92853b5

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

components/docker-up/dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
set -euo pipefail
77

8-
RUNC_VERSION=v1.1.7
8+
RUNC_VERSION=v1.1.9
99

1010
# DOCKER_VERSION and DOCKER_COMPOSE_VERSION are defined in WORKSPACE.yaml
1111
curl -o docker.tgz -fsSL "https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz"

components/ws-daemon/debug.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/go:1.19 AS debugger
5+
FROM cgr.dev/chainguard/go:1.20 AS debugger
66
RUN apk add --no-cache git
77
RUN go get -u github.com/go-delve/delve/cmd/dlv
88

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.7/runc.amd64 \
12+
&& curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.9/runc.amd64 \
1313
&& chmod +x runc.amd64 \
14-
&& if ! file runc.amd64 | grep -iq "ELF 64-bit LSB executable"; then echo "runc.amd64 is not a binary file"; exit 1;fi
14+
&& 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

1616
FROM ubuntu:22.10
1717

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.7
27+
github.com/opencontainers/runc v1.1.9
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:46d848cfc02366b9f44e8e9323935ecb349286bf8a047a9e83186d91a105fc3a 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.7/runc.amd64 \
8+
&& curl -OsSL https://github.com/opencontainers/runc/releases/download/v1.1.9/runc.amd64 \
99
&& chmod +x runc.amd64 \
10-
&& if ! file runc.amd64 | grep -iq "ELF 64-bit LSB executable"; then echo "runc.amd64 is not a binary file"; exit 1;fi
10+
&& 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

1212
FROM ubuntu:22.04
1313

components/ws-manager-mk2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ require (
1212
github.com/gitpod-io/gitpod/ws-manager/api v0.0.0-00010101000000-000000000000
1313
github.com/go-logr/logr v1.2.4
1414
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible
15+
github.com/google/go-cmp v0.5.9
1516
github.com/google/uuid v1.3.0
1617
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
1718
github.com/hashicorp/golang-lru v0.5.1
@@ -54,7 +55,6 @@ require (
5455
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5556
github.com/golang/protobuf v1.5.3 // indirect
5657
github.com/google/gnostic v0.5.7-v3refs // indirect
57-
github.com/google/go-cmp v0.5.9 // indirect
5858
github.com/google/gofuzz v1.2.0 // indirect
5959
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
6060
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect

install/installer/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ require (
214214
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
215215
github.com/opencontainers/go-digest v1.0.0 // indirect
216216
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
217-
github.com/opencontainers/runc v1.1.7 // indirect
217+
github.com/opencontainers/runc v1.1.9 // indirect
218218
github.com/opencontainers/runtime-spec v1.1.0 // indirect
219219
github.com/opencontainers/selinux v1.11.0 // indirect
220220
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)