We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cd162f commit 1fa0e10Copy full SHA for 1fa0e10
.github/workflows/qodana.yml
@@ -21,7 +21,8 @@ jobs:
21
dotnet-version: |
22
8.0.*
23
9.0.*
24
- - uses: actions/checkout@v4
+ - name: Git checkout
25
+ uses: actions/checkout@v4
26
with:
27
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
28
fetch-depth: 0 # a full history is required for pull request analysis
@@ -39,6 +40,7 @@ jobs:
39
40
upload-result: true
41
env:
42
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
- - uses: github/codeql-action/upload-sarif@v2
43
+ - name: Upload SARIF report
44
+ uses: github/codeql-action/upload-sarif@v2
45
46
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
0 commit comments