From 3ceea2d133e184d5091f9092ba1d4fdf42d3e879 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 apt --- helm-package-push/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helm-package-push/action.yml b/helm-package-push/action.yml index 17f2681..2cb21ac 100644 --- a/helm-package-push/action.yml +++ b/helm-package-push/action.yml @@ -21,10 +21,10 @@ inputs: runs: using: composite steps: - - name: Install Helm - uses: azure/setup-helm@v4 - with: - version: latest + - name: Check Helm + shell: bash + run: | + helm version --short || { echo "[ERROR] helm not found in runner image"; exit 1; } - name: Inject image tag into chart values shell: bash