From f13f27a6f20eadb6b17ef5573c21dcdbfe8013f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20L=C3=B6per?= Date: Sun, 15 Dec 2024 13:01:17 +0100 Subject: [PATCH] fix: if condition see discussion in: https://github.com/actions/runner/issues/1173 --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index d3b6ffa..cb9efab 100644 --- a/action.yaml +++ b/action.yaml @@ -47,7 +47,7 @@ runs: HELM_EXPERIMENTAL_OCI: '1' - name: Helm | Dependency - if: inputs.update_dependencies == 'true' + if: ${{ inputs.update_dependencies == 'true' }} shell: bash run: helm dependency update ${{ inputs.path == null && format('{0}/{1}', 'charts', inputs.name) || inputs.path }} env: