Skip to content

Commit 4f7a2cd

Browse files
Fix: Print Outputs When Critical/High Findings Gate Enabled
Fixes issue where the last line of the output step got missed when migrating action from NIR repo.
2 parents 8d4cc5c + 700dcc7 commit 4f7a2cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

iac-scan/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,5 @@ runs:
128128
shell: bash
129129
run: |
130130
echo "Critical findings detected: ${{ steps.report.outputs.crit }}"
131-
echo "High
131+
echo "High findings detected: ${{ steps.report.outputs.high }}"
132+
exit 1

0 commit comments

Comments
 (0)