Skip to content

Commit 6acd4a6

Browse files
committed
fix
1 parent 64be16c commit 6acd4a6

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed
Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
1-
name: CodeQL Python Analysis
1+
name: CodeQL Interpreted Languages Analysis
22

33
on:
44
workflow_dispatch:
55
schedule:
66
- cron: "0 4 * * SUN"
77
pull_request:
88
paths:
9-
- ".github/workflows/codeql_python.yml"
9+
- ".github/workflows/*.yml"
1010
- "*.py"
1111

1212
jobs:
1313
codeql-analysis:
14-
name: CodeQL Python Analysis
14+
name: CodeQL ${{ matrix.language }} Analysis
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
language:
19+
- python
20+
- actions
21+
1622
steps:
1723
- name: Checkout repository
1824
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1925

2026
- name: Initialize CodeQL
2127
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
2228
with:
23-
languages: python
29+
languages: ${{ matrix.language }}
2430
config-file: ./.github/codeql/codeql-config.yml
2531

2632
- name: Run CodeQL Analysis
2733
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
2834
with:
29-
category: "Python Tools"
35+
category: "Interpreted Languages"
36+
check_name: "CodeQL ${{ matrix.language }} Analysis"

0 commit comments

Comments
 (0)