fix(security): autofix Template Injection in GitHub Workflows Action

This commit is contained in:
aikido-autofix[bot]
2026-03-26 17:33:01 +00:00
committed by GitHub
parent cca6a7c989
commit 1ac22dd962

View File

@@ -23,8 +23,10 @@ runs:
steps:
- name: CONFIRM ARM BUILD
shell: bash
env:
ARM_BUILD: ${{ inputs.arm-build }}
run: |
echo "ARM BUILD: ${{ inputs.arm-build }}"
echo "ARM BUILD: $ARM_BUILD"
- name: Build x86_64 Manylinux wheel
if: ${{ inputs.arm-build == 'false' }}
uses: PyO3/maturin-action@v1