File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : CI
22
3+ permissions :
4+ contents : read
5+
36on :
47 push :
58 branches : ["**"]
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 : ' 22 13 * * 3'
10+
11+ jobs :
12+ analyze :
13+ name : Analyze (${{ matrix.language }})
14+ runs-on : ubuntu-latest
15+ permissions :
16+ security-events : write
17+ packages : read
18+ strategy :
19+ fail-fast : false
20+ matrix :
21+ include :
22+ - language : actions
23+ - language : java-kotlin
24+ steps :
25+ - name : Checkout repository
26+ uses : actions/checkout@v4
27+
28+ - name : Initialize CodeQL
29+ uses : github/codeql-action/init@v4
30+ with :
31+ languages : ${{ matrix.language }}
32+ build-mode : none
33+
34+ - name : Perform CodeQL Analysis
35+ uses : github/codeql-action/analyze@v4
36+ with :
37+ category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 11name : CVE Scanning
22
3+ permissions :
4+ contents : read
5+
36on :
47 push :
58
You can’t perform that action at this time.
0 commit comments