File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
- name : CodeQL Python Analysis
1
+ name : CodeQL Interpreted Languages Analysis
2
2
3
3
on :
4
4
workflow_dispatch :
5
5
schedule :
6
6
- cron : " 0 4 * * SUN"
7
7
pull_request :
8
8
paths :
9
- - " .github/workflows/codeql_python .yml"
9
+ - " .github/workflows/* .yml"
10
10
- " *.py"
11
11
12
12
jobs :
13
13
codeql-analysis :
14
- name : CodeQL Python Analysis
14
+ name : CodeQL ${{ matrix.language }} Analysis
15
15
runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ language :
19
+ - python
20
+ - actions
21
+
16
22
steps :
17
23
- name : Checkout repository
18
24
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19
25
20
26
- name : Initialize CodeQL
21
27
uses : github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
22
28
with :
23
- languages : python
29
+ languages : ${{ matrix.language }}
24
30
config-file : ./.github/codeql/codeql-config.yml
25
31
26
32
- name : Run CodeQL Analysis
27
33
uses : github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
28
34
with :
29
- category : " Python Tools"
35
+ category : " Interpreted Languages"
36
+ check_name : " CodeQL ${{ matrix.language }} Analysis"
You can’t perform that action at this time.
0 commit comments