File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ name: "CodeQL config"
3
3
queries :
4
4
- uses : security-extended
5
5
6
+ paths-ignore :
7
+ - gitweb/**/*.js # GitWeb is not distributed
8
+
6
9
query-filters :
7
10
- exclude :
8
11
# yes, this extra indentation is intentional
Original file line number Diff line number Diff line change 17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
- language : ["cpp"]
20
+ language : ["cpp", "javascript" ]
21
21
22
22
steps :
23
23
- name : Checkout repository
@@ -55,10 +55,10 @@ jobs:
55
55
- name : publish sarif for debugging
56
56
uses : actions/upload-artifact@v4
57
57
with :
58
- name : sarif-results
58
+ name : sarif-results-${{ matrix.language }}
59
59
path : sarif-results
60
60
61
61
- name : Upload SARIF
62
62
uses : github/codeql-action/upload-sarif@v3
63
63
with :
64
- sarif_file : sarif-results/cpp .sarif
64
+ sarif_file : sarif-results/${{ matrix.language }} .sarif
You can’t perform that action at this time.
0 commit comments