From ccb98da2437169e08715ec0bd9911a7adfa90d67 Mon Sep 17 00:00:00 2001 From: jad0s Date: Wed, 20 May 2026 11:54:12 +0200 Subject: [PATCH] fix(actions): install k3d binary directly instead of running the install script --- .forgejo/workflows/validate.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/validate.yaml b/.forgejo/workflows/validate.yaml index 9577edb..710ab72 100644 --- a/.forgejo/workflows/validate.yaml +++ b/.forgejo/workflows/validate.yaml @@ -26,15 +26,13 @@ jobs: ./manifests/ - name: Install k3d run: | - wget -O /tmp/k3d-install.sh https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh - apk add curl - bash /tmp/k3d-install.sh + wget -O /usr/local/bin/k3d https://github.com/k3d-io/releases/download/v5.7.4/k3d-linux-amd64 + chmod +x /usr/local/bin/k3d - name: Create test cluster run: | - k3s cluster create test --wait + k3d cluster create test --wait kubectl cluster-info - - name: Apply manifests run: | kubectl apply -f manifests/ --recursive