File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CodeQL
2
+
3
+ on :
4
+ push :
5
+ branches : ["master"]
6
+ pull_request :
7
+ branches : ["master"]
8
+ schedule :
9
+ - cron : " 0 0 * * *"
10
+ workflow_dispatch :
11
+
12
+ concurrency :
13
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
14
+ cancel-in-progress : true
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
+
26
+ strategy :
27
+ fail-fast : false
28
+ matrix :
29
+ include :
30
+ - language : actions
31
+ build-mode : none
32
+
33
+ steps :
34
+ - name : Checkout repository
35
+ uses : actions/checkout@v5
36
+
37
+ - name : Initialize CodeQL
38
+ uses : github/codeql-action/init@v3
39
+ with :
40
+ languages : ${{ matrix.language }}
41
+ build-mode : ${{ matrix.build-mode }}
42
+
43
+ - name : Perform CodeQL Analysis
44
+ uses : github/codeql-action/analyze@v3
45
+ with :
46
+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments