File tree Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7
7
# we include both even though one is a superset of the
8
8
# other, because we're testing the parsing logic and
9
9
# that the suites exist in the codeql bundle.
10
+ - uses : security-and-quality
10
11
- uses : security-experimental
11
12
- uses : security-extended
12
- - uses : security-and-quality
13
13
paths-ignore :
14
- - tests
15
14
- lib
15
+ - tests
Original file line number Diff line number Diff line change 95
95
id : init
96
96
with :
97
97
languages : javascript
98
- config-file : ./.github/codeql/codeql-config.yml
98
+ config-file : ./.github/codeql/codeql-config-javascript .yml
99
99
tools : ${{ matrix.tools }}
100
100
# confirm steps.init.outputs.codeql-path points to the codeql binary
101
101
- name : Print CodeQL Version
@@ -107,13 +107,17 @@ jobs:
107
107
uses : ./analyze
108
108
with :
109
109
category : " /language:javascript"
110
+ upload : ${{ (matrix.os == 'ubuntu-24.04' && !matrix.tools && 'always') || 'never' }}
110
111
111
-
112
- analyze-actions :
112
+ analyze-other :
113
113
runs-on : ubuntu-latest
114
114
115
115
strategy :
116
116
fail-fast : false
117
+ matrix :
118
+ include :
119
+ - language : actions
120
+ - language : python
117
121
118
122
permissions :
119
123
contents : read
@@ -125,9 +129,15 @@ jobs:
125
129
- name : Initialize CodeQL
126
130
uses : ./init
127
131
with :
128
- languages : actions
129
- config-file : ./.github/codeql/codeql-actions-config.yml
132
+ languages : ${{ matrix.language }}
133
+ build-mode : none
134
+ config : >
135
+ paths-ignore:
136
+ - lib
137
+ - tests
138
+ queries:
139
+ - uses: security-and-quality
130
140
- name : Perform CodeQL Analysis
131
141
uses : ./analyze
132
142
with :
133
- category : " /language:actions "
143
+ category : " /language:${{ matrix.language }} "
You can’t perform that action at this time.
0 commit comments