From 411ab990fb3cc696c94268aa73c98b3bb025b5d4 Mon Sep 17 00:00:00 2001 From: Caesar2011 Date: Mon, 18 May 2026 19:04:32 +0200 Subject: [PATCH] Install latest version of helm via script --- helm-package-push/action.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/helm-package-push/action.yml b/helm-package-push/action.yml index 17f2681..d4adb8a 100644 --- a/helm-package-push/action.yml +++ b/helm-package-push/action.yml @@ -22,9 +22,10 @@ runs: using: composite steps: - name: Install Helm - uses: azure/setup-helm@v4 - with: - version: latest + shell: bash + run: | + curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4 | bash + helm version --short || { echo "[ERROR] helm not found in runner image"; exit 1; } - name: Inject image tag into chart values shell: bash