From d34975b6f3c17924a1ef7d43bb4f60102542e352 Mon Sep 17 00:00:00 2001 From: ysicing Date: Wed, 7 Feb 2024 17:35:12 +0800 Subject: [PATCH] chore: update k3s version and set new dev version - Update `getk3s.sh` script to download k3s version v1.26.13+k3s2 instead of v1.26.11+k3s2 - Update `version.json` to set the `latest`, `stable`, and `dev` versions to 3.0.13 instead of 3.0.11 Signed-off-by: ysicing --- hack/scripts/getk3s.sh | 4 ++-- version.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hack/scripts/getk3s.sh b/hack/scripts/getk3s.sh index ca56dd08..6146a9d7 100755 --- a/hack/scripts/getk3s.sh +++ b/hack/scripts/getk3s.sh @@ -8,10 +8,10 @@ set -xe if [ ! -f "hack/bin/k3s-linux-amd64" ]; then - wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.26.11%2Bk3s2/k3s + wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.26.13%2Bk3s2/k3s fi if [ ! -f "hack/bin/k3s-linux-arm64" ]; then - wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.26.11%2Bk3s2/k3s-arm64 + wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.26.13%2Bk3s2/k3s-arm64 fi chmod +x hack/bin/k3s-linux-amd64 hack/bin/k3s-linux-arm64 diff --git a/version.json b/version.json index 73fe8e83..19f66fc9 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "latest": "3.0.11", - "stable": "3.0.11", - "dev": "3.0.11" + "latest": "3.0.13", + "stable": "3.0.13", + "dev": "3.0.13" }