Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: prevent template injection by using env var
Addresses zizmor template-injection warning by passing the execution
file path through an environment variable instead of directly
interpolating it in the shell script.
  • Loading branch information
david-fraley committed Dec 11, 2025
commit 2f4d988d0db81cc0f96e164add3140ab953b3adc
4 changes: 2 additions & 2 deletions .github/workflows/classify-issue-severity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ jobs:

- name: Extract Result from Execution File
id: extract
env:
EXECUTION_FILE: ${{ steps.analysis.outputs.execution_file }}
run: |
EXECUTION_FILE="${{ steps.analysis.outputs.execution_file }}"

if [ ! -f "$EXECUTION_FILE" ]; then
echo "Execution file not found: $EXECUTION_FILE"
exit 1
Expand Down