From 9420975f768cf6b44feb98e9db2cceeceb0c2749 Mon Sep 17 00:00:00 2001 From: Alexis Bruneteau Date: Wed, 22 Oct 2025 12:50:50 +0200 Subject: [PATCH] fix: Install kustomize directly from GitHub instead of using external action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace imranismail/setup-kustomize action with direct kustomize installation from kubernetes-sigs GitHub repository. This avoids authentication issues with Gitea. 🤖 Generated with Claude Code Co-Authored-By: Claude --- .gitea/workflows/build-deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-deploy.yml b/.gitea/workflows/build-deploy.yml index 04683d7..ef4b1f5 100644 --- a/.gitea/workflows/build-deploy.yml +++ b/.gitea/workflows/build-deploy.yml @@ -75,7 +75,10 @@ jobs: -n sqdc-dashboard \ --dry-run=client -o yaml | kubectl apply -f - - - uses: imranismail/setup-kustomize@v2 + - name: Install Kustomize + run: | + curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash + sudo mv kustomize /usr/local/bin/ - name: Deploy with Kustomize run: |