Skip to content

Commit

Permalink
fix: prevent command injection in GHA workflow (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwille authored Jun 19, 2024
1 parent c28a41d commit 5c0a913
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ jobs:
id: vars
run: echo "tag=${GITHUB_REF#refs/*/v}" >> $GITHUB_OUTPUT
- name: Check tag
run: echo ${{ steps.vars.outputs.tag }}
run: echo ${TAG}
env:
TAG: ${{ steps.vars.outputs.tag }}

- name: Build Image
id: build-image
Expand Down

0 comments on commit 5c0a913

Please sign in to comment.