File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL Scanning"
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ paths-ignore :
7+ - ' documentation/decisions/**'
8+
9+ pull_request :
10+ branches : [ "main" ]
11+ schedule :
12+ - cron : ' 30 0 * * *'
13+
14+ jobs :
15+ analyze :
16+ name : Analyze
17+ runs-on : ' ubuntu-latest'
18+ permissions :
19+ security-events : write
20+ packages : read
21+ actions : read
22+ contents : read
23+
24+ strategy :
25+ fail-fast : false
26+ matrix :
27+ include :
28+ - language : actions
29+ build-mode : none
30+
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+
41+ - name : Autobuild
42+ uses : github/codeql-action/autobuild@v2
43+
44+ - name : Perform CodeQL Analysis
45+ uses : github/codeql-action/analyze@v3
46+ with :
47+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments