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