Skip to content

Commit

Permalink
Try try again
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Feb 14, 2025
1 parent 0fdf1ec commit 032f2aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/ossf-compiler-flags-scanner/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ runs:
bash -c "/github/ossf-sarif-generator.es '$(cat compiler-options.json)'" > results.sarif
- name: "Upload artifact"
if: !cancelled()
if: ${{ !cancelled() }}
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.4.3 ratchet:actions/upload-artifact@v4
with:
name: SARIF file
path: results.sarif

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
if: !cancelled() && inputs.upload == 'true'
if: ${{ !cancelled() && inputs.upload == 'true' }}
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # ratchet:github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif

0 comments on commit 032f2aa

Please sign in to comment.