Skip to content

Commit

Permalink
P4ADEV-1377 edit security-scan.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antocalo committed Nov 14, 2024
1 parent 33edf73 commit aa0ddf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
SendSlackNotification:
needs: BuildAndScan
uses: ./.github/workflows/send-notification.yml
if: always() && (env.CVE_HIGH > 0 || env.CVE_CRITICAL > 0)
if: always() && (needs.BuildAndScan.outputs.CVE_HIGH > 0 || needs.BuildAndScan.outputs.CVE_CRITICAL > 0)
with:
CVE_CRITICAL: ${{needs.BuildAndScan.outputs.CVE_CRITICAL}}
CVE_HIGH: ${{needs.BuildAndScan.outputs.CVE_HIGH}}
Expand Down

0 comments on commit aa0ddf0

Please sign in to comment.