Skip to content

Commit d34975b

Browse files
committed
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 <[email protected]>
1 parent 581982a commit d34975b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

hack/scripts/getk3s.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
set -xe
99

1010
if [ ! -f "hack/bin/k3s-linux-amd64" ]; then
11-
wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.26.11%2Bk3s2/k3s
11+
wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.26.13%2Bk3s2/k3s
1212
fi
1313
if [ ! -f "hack/bin/k3s-linux-arm64" ]; then
14-
wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.26.11%2Bk3s2/k3s-arm64
14+
wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.26.13%2Bk3s2/k3s-arm64
1515
fi
1616

1717
chmod +x hack/bin/k3s-linux-amd64 hack/bin/k3s-linux-arm64

version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"latest": "3.0.11",
3-
"stable": "3.0.11",
4-
"dev": "3.0.11"
2+
"latest": "3.0.13",
3+
"stable": "3.0.13",
4+
"dev": "3.0.13"
55
}

0 commit comments

Comments
 (0)