File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+ schedule :
9+ - cron : ' 35 7 * * 3'
10+
11+ permissions : read-all
12+
13+ jobs :
14+ analyze :
15+ name : Analyze
16+ runs-on : ubuntu-latest
17+ permissions :
18+ security-events : write
19+
20+ strategy :
21+ fail-fast : false
22+ matrix :
23+ language : [ 'actions' ]
24+
25+ steps :
26+ - name : Checkout repository
27+ uses : actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v6.0.1
28+
29+ - name : Initialize CodeQL
30+ uses : github/codeql-action/init@v3
31+ with :
32+ languages : ${{ matrix.language }}
33+
34+ - name : Perform CodeQL Analysis
35+ uses : github/codeql-action/analyze@v3
36+ with :
37+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments