Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edwintorok committed Apr 25, 2024
1 parent b774482 commit 2715f30
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/codechecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,19 @@ jobs:
shell: bash
run: report-converter "codechecker_results" --type cppcheck --output codechecker.sarif --export sarif

- name: fix conversion bugs
shell: bash
run: sed -e 's/vesion/version/' <codechecker.sarif >codechecker.fixed.sarif

- name: Upload CodeChecker SARIF report
uses: actions/upload-artifact@v4
with:
name: codechecker_sarif
path: |
codechecker.sarif
codechecker.fixed.sarif
- name: Upload SARIF report
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: codechecker.sarif
sarif_file: codechecker.fixed.sarif

0 comments on commit 2715f30

Please sign in to comment.