Skip to content

Commit

Permalink
fix: corrected path to SARIF file
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed Sep 16, 2024
1 parent d8a0b57 commit 2da82a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@ jobs:
- name: run-codeql
uses: github/codeql-action/analyze@v3
with:
output: sarif-results
output: codeql-results.d
upload: failure-only
- name: filter-codeql
uses: advanced-security/filter-sarif@v1
with:
patterns: |
-vendor/*
input: sarif-results/c-cpp.sarif
output: sarif-results/c-cpp.sarif
input: codeql-results.d/cpp.sarif
output: codeql-results.d/cpp.sarif
- name: upload-codeql
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: sarif-results/c-cpp.sarif
sarif_file: codeql-results.d/cpp.sarif

0 comments on commit 2da82a3

Please sign in to comment.