File tree Expand file tree Collapse file tree 1 file changed +40
-1
lines changed
Expand file tree Collapse file tree 1 file changed +40
-1
lines changed Original file line number Diff line number Diff line change 1919 schedule :
2020 - cron : ' 22 21 * * 3'
2121
22+ jobs :
23+ analyze :
24+ name : Analyze
25+ runs-on : ubuntu-latest
26+ timeout-minutes : 360
27+ permissions :
28+ security-events : write
29+ packages : read
30+ actions : read
31+ contents : read
32+
33+ strategy :
34+ fail-fast : true
35+ matrix :
36+ language : [ 'c-cpp', 'codeql' ] # Explicitly specify the languages
37+ build-mode : [ 'default' ]
38+
39+ steps :
40+ - name : Checkout repository
41+ uses : actions/checkout@v4
42+
43+ - name : Initialize CodeQL
44+ uses : github/codeql-action/init@v3
45+ with :
46+ languages : ${{ matrix.language }}
47+ build-mode : ${{ matrix.build-mode }}
48+
49+ - name : Perform CodeQL Analysis
50+ uses : github/codeql-action/analyze@v3
51+ with :
52+ category : " /language:${{matrix.language}}"
53+ on :
54+ push :
55+ branches : [ "main" ]
56+ pull_request :
57+ branches : [ "main" ]
58+ schedule :
59+ - cron : ' 22 21 * * 3'
60+
2261jobs :
2362 analyze :
2463 name : Analyze (${{ matrix.language }})
88127 with :
89128 category : " /language:${{matrix.language}}"
90129
91- properties : left-right
130+
92131 verbosity :
93132 title : " Extractor logging verbosity level."
94133 description : |
You can’t perform that action at this time.
0 commit comments