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/
- name: Install k3d
run: |
wget -O /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64
chmod +x /usr/local/bin/k3d
export PATH=$PATH:/tmp
curl -fsSL -o /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64
mv /tmp/k3d /usr/local/bin
- name: Create test cluster
run: |