Skip to content

Commit e49d3fd

Browse files
authored
Merge pull request containerd#10334 from thaJeztah/bump_runc_1.1.13
update runc binary to v1.1.13
2 parents 98ebb3e + cc2ceda commit e49d3fd

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

script/setup/install-runc

+2-9
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,11 @@ function install_runc() {
3434
: "${RUNC_REPO:=https://github.com/opencontainers/runc.git}"
3535

3636
TMPROOT=$(mktemp -d)
37-
# runc is incompatible with Go 1.22 on glibc-based distros
38-
# https://github.com/opencontainers/runc/issues/4233
39-
GO121DIR="${TMPROOT}"/go121
40-
mkdir -p "${GO121DIR}"
41-
GOBIN="${GO121DIR}" go install golang.org/dl/go1.21.11@latest
42-
GO121="${GO121DIR}"/go1.21.11
43-
$GO121 download
4437
git clone "${RUNC_REPO}" "${TMPROOT}"/runc
4538
pushd "${TMPROOT}"/runc
4639
git checkout "${RUNC_VERSION}"
47-
make GO=$GO121 BUILDTAGS='seccomp' runc
48-
$SUDO make GO=$GO121 install
40+
make BUILDTAGS='seccomp' runc
41+
$SUDO make install
4942
popd
5043
rm -fR "${TMPROOT}"
5144
}

script/setup/runc-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.1.12
1+
v1.1.13

0 commit comments

Comments
 (0)