From b271ea64ec80738d8635b7d14d1d0a6532b65562 Mon Sep 17 00:00:00 2001 From: nttoole Date: Tue, 4 Nov 2025 08:25:26 -0800 Subject: [PATCH 1/2] Updated sarif report path value --- sonar-project.properties | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sonar-project.properties b/sonar-project.properties index 67be0db8..d5cad02e 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -10,5 +10,10 @@ sonar.projectVersion=3.0.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. sonar.sources=. + +# Guessing the value based on the example of Git Action script... +sonar.sarifReportPaths=../results/*_stripped.sarif + + # Encoding of the source code. Default is default system encoding sonar.sourceEncoding=UTF-8 From daff0017445fe3218e7f4d62cfa07dce33c522e1 Mon Sep 17 00:00:00 2001 From: nttoole Date: Tue, 4 Nov 2025 13:17:31 -0800 Subject: [PATCH 2/2] Make upload artifact action name lang based --- .github/workflows/code-scanning.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-scanning.yml b/.github/workflows/code-scanning.yml index 6cbb224d..b2a818e0 100644 --- a/.github/workflows/code-scanning.yml +++ b/.github/workflows/code-scanning.yml @@ -125,7 +125,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@v4.3.1 with: - name: codeql-artifacts + name: codeql-artifacts-${{ matrix.language }} path: ${{ env.RESULTS_DIR }} - name: SonarQube Scan