File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CodeQL Advanced
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+ schedule :
11+ - cron : " 22 2 * * 4"
12+
13+ jobs :
14+ analyze :
15+ name : Analyze ${{ matrix.language }}
16+ runs-on : ubuntu-latest
17+ permissions :
18+ security-events : write
19+ actions : read
20+ contents : read
21+ packages : read
22+ strategy :
23+ fail-fast : false
24+ matrix :
25+ include :
26+ - language : actions
27+ build-mode : none
28+ - language : python
29+ build-mode : none
30+ - language : javascript-typescript
31+ build-mode : none
32+
33+ steps :
34+ - name : Checkout repository
35+ uses : actions/checkout@v5
36+ - name : Initialize CodeQL tools for scanning of ${{ matrix.language }}
37+ uses : github/codeql-action/init@v4
38+ with :
39+ languages : ${{ matrix.language }}
40+ - name : Autobuild
41+ uses : github/codeql-action/autobuild@v4
42+ - name : Perform CodeQL analysis of ${{ matrix.language }}
43+ uses : github/codeql-action/analyze@v4
44+ with :
45+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments