We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ee7112 commit a8ed0d0Copy full SHA for a8ed0d0
1 file changed
.github/workflows/test.yml
@@ -37,7 +37,11 @@ jobs:
37
skaffold: v2.16.1 # renovate: datasource=github-releases depName=GoogleContainerTools/skaffold
38
39
- name: Setup k3sup
40
- run: curl -sLS https://get.k3sup.dev | sh
+ env:
41
+ K3SUP_VERSION: 0.13.10 # renovate: datasource=github-releases depName=alexellis/k3sup
42
+ run: |
43
+ curl https://github.com/alexellis/k3sup/releases/download/$K3SUP_VERSION/k3sup -sSL -o /usr/local/bin/k3sup
44
+ chmod +x /usr/local/bin/k3sup
45
46
- uses: actions/setup-go@v5
47
with:
0 commit comments