File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Github Actions CodeQL
2
+
3
+ permissions :
4
+ contents : read
5
+
6
+ on :
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ concurrency :
12
+ group : ${{ github.workflow }}
13
+ cancel-in-progress : true
14
+
15
+ jobs :
16
+ codeql :
17
+ name : ' Github Actions CodeQL'
18
+ runs-on : ubuntu-24.04
19
+ permissions :
20
+ security-events : write
21
+ steps :
22
+ - name : Checkout LLVM
23
+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24
+ - name : Initialize CodeQL
25
+ uses : github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
26
+ with :
27
+ languages : actions
28
+ queries : security-extended
29
+ - name : Perform CodeQL Analysis
30
+ uses : github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
You can’t perform that action at this time.
0 commit comments