fix(actions): use curl to install k3d as wget had SSL errors in node:22
Some checks failed
/ validate (push) Has been cancelled
Some checks failed
/ validate (push) Has been cancelled
This commit is contained in:
parent
31cdd0704c
commit
48fb1e53a5
1 changed files with 2 additions and 3 deletions
|
|
@ -26,9 +26,8 @@ jobs:
|
||||||
./manifests/
|
./manifests/
|
||||||
- name: Install k3d
|
- name: Install k3d
|
||||||
run: |
|
run: |
|
||||||
wget -O /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64
|
curl -fsSL -o /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64
|
||||||
chmod +x /usr/local/bin/k3d
|
mv /tmp/k3d /usr/local/bin
|
||||||
export PATH=$PATH:/tmp
|
|
||||||
|
|
||||||
- name: Create test cluster
|
- name: Create test cluster
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue