Skip to content

Commit

Permalink
Fix Codacy issue "rejecting SARIF, as there are more runs than allowed"
Browse files Browse the repository at this point in the history
  • Loading branch information
henrybear327 committed Nov 18, 2023
1 parent 3bb2d32 commit 2ce8423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# You can also omit the token and run the tools that support default configurations
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
verbose: true
output: results.sarif
output: results-${{ env.COMMIT_SHA }}.sarif
format: sarif
# Adjust severity of non-security issues
gh-code-scanning-compat: true
Expand All @@ -53,4 +53,4 @@ jobs:
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif
sarif_file: results-${{ env.COMMIT_SHA }}.sarif

0 comments on commit 2ce8423

Please sign in to comment.