From a67dbdee793e1ec2905e49a04460b500855c59c3 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 30 Nov 2020 18:10:24 +0900 Subject: [PATCH] CI: update crun to 0.16 Changes since 0.15: - https://github.com/containers/crun/releases/tag/0.16 - https://github.com/containers/crun/releases/tag/0.15.1 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 f0e2c8b43..d0efb3724 100755 --- a/script/setup/install-runc +++ b/script/setup/install-runc @@ -31,7 +31,7 @@ function install_runc() { } function install_crun() { - CRUN_VERSION=0.15 + CRUN_VERSION=0.16 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 }