From cc5a7d9a0bbd3e77f293f0cc862eafefbf830ded Mon Sep 17 00:00:00 2001 From: "aikido-autofix[bot]" <119856028+aikido-autofix[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 21:57:05 +0000 Subject: [PATCH] fix(security): autofix Template Injection in GitHub Workflows Action --- .github/workflows/create-artifact.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-artifact.yml b/.github/workflows/create-artifact.yml index 90b9745..4fee730 100644 --- a/.github/workflows/create-artifact.yml +++ b/.github/workflows/create-artifact.yml @@ -78,7 +78,9 @@ jobs: - name: Set the version in safe-chain package if: inputs.version != '' - run: npm --no-git-tag-version version ${{ inputs.version }} --workspace=packages/safe-chain --ignore-scripts + env: + VERSION: ${{ inputs.version }} + run: npm --no-git-tag-version version $VERSION --workspace=packages/safe-chain --ignore-scripts - name: Create binary run: |