fix(actions): use curl to install k3d as wget had SSL errors in node:22
Some checks failed
/ validate (push) Has been cancelled

This commit is contained in:
jad0s 2026-05-20 15:17:37 +02:00
parent 31cdd0704c
commit 48fb1e53a5

View file

@ -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: |