From c385d1102b9ffd0e29214b8ae82d8e8d7bb36149 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Tue, 29 Sep 2020 17:02:34 +0900 Subject: [PATCH] CI: update crun to v0.15 Changes: https://github.com/containers/crun/releases/tag/0.15 Signed-off-by: Akihiro Suda --- script/setup/install-runc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/setup/install-runc b/script/setup/install-runc index 5fbaf4b0c..d4ea55ac4 100755 --- a/script/setup/install-runc +++ b/script/setup/install-runc @@ -38,8 +38,8 @@ function install_runc() { } function install_crun() { - CRUN_VERSION=0.14 - curl -o /usr/local/sbin/runc -L https://github.com/containers/crun/releases/download/${CRUN_VERSION}/crun-${CRUN_VERSION}-static-$(uname -m) + CRUN_VERSION=0.15 + 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 }