From f700ae8732c42cad41cf5628884610b3f95a464d Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 13 Sep 2021 16:00:35 +0900 Subject: [PATCH] CI: bump up crun to 1.0 Release notes: https://github.com/containers/crun/releases Signed-off-by: Akihiro Suda --- script/setup/install-runc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/setup/install-runc b/script/setup/install-runc index 176ec9f9a..ab95d37f0 100755 --- a/script/setup/install-runc +++ b/script/setup/install-runc @@ -37,7 +37,7 @@ function install_runc() { } function install_crun() { - CRUN_VERSION=0.19 + CRUN_VERSION=1.0 curl -o /usr/local/sbin/runc -L https://github.com/containers/crun/releases/download/"${CRUN_VERSION}"/crun-"${CRUN_VERSION}"-linux-"$(go env GOARCH)" chmod +x /usr/local/sbin/runc }