fix: Install kustomize directly from GitHub instead of using external action

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 <noreply@anthropic.com>
This commit is contained in:
Alexis Bruneteau 2025-10-22 12:50:50 +02:00
parent 00331c5d95
commit 9420975f76

View File

@ -75,7 +75,10 @@ jobs:
-n sqdc-dashboard \ -n sqdc-dashboard \
--dry-run=client -o yaml | kubectl apply -f - --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 - name: Deploy with Kustomize
run: | run: |