File tree Expand file tree Collapse file tree 2 files changed +33
-49
lines changed Expand file tree Collapse file tree 2 files changed +33
-49
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,38 @@ jobs:
148
148
permissions :
149
149
contents : read
150
150
151
+ codeql :
152
+ name : Analyze (${{ matrix.language }})
153
+ runs-on : ubuntu-latest
154
+ permissions :
155
+ security-events : write
156
+ actions : read
157
+ contents : read
158
+
159
+ strategy :
160
+ fail-fast : false
161
+ matrix :
162
+ include :
163
+ - language : actions
164
+ build-mode : none
165
+
166
+ steps :
167
+ - name : Checkout repository
168
+ uses : actions/checkout@v5
169
+ with :
170
+ persist-credentials : false
171
+
172
+ - name : Initialize CodeQL
173
+ uses : github/codeql-action/init@v3
174
+ with :
175
+ languages : ${{ matrix.language }}
176
+ build-mode : ${{ matrix.build-mode }}
177
+
178
+ - name : Perform CodeQL Analysis
179
+ uses : github/codeql-action/analyze@v3
180
+ with :
181
+ category : " /language:${{matrix.language}}"
182
+
151
183
ci-success :
152
184
runs-on : ubuntu-latest
153
185
if : always()
@@ -159,6 +191,7 @@ jobs:
159
191
- docs
160
192
- fmt
161
193
- deny
194
+ - codeql
162
195
timeout-minutes : 30
163
196
steps :
164
197
- name : Decide whether the needed jobs succeeded or failed
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments