From 14f357b90fdaa85a4c74027c8204957903eb585f Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 12 Apr 2021 17:05:11 +0900 Subject: [PATCH] CI: update crun to 0.19 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 2db853138..176ec9f9a 100755 --- a/script/setup/install-runc +++ b/script/setup/install-runc @@ -37,7 +37,7 @@ function install_runc() { } function install_crun() { - CRUN_VERSION=0.17 + CRUN_VERSION=0.19 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 }