File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed 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 : ' 31 6 * * 1'
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ codeql-analyze :
16+ name : CodeQL Analyze
17+ runs-on : ubuntu-latest
18+
19+ permissions :
20+ security-events : write
21+ actions : read
22+
23+ strategy :
24+ fail-fast : false
25+ matrix :
26+ language :
27+ - go
28+
29+ steps :
30+ - name : Checkout repository
31+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32+
33+ # Initializes the CodeQL tools for scanning.
34+ - name : Initialize CodeQL
35+ uses : github/codeql-action/init@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5
36+ with :
37+ languages : ${{ matrix.language }}
38+
39+ - name : Autobuild
40+ uses : github/codeql-action/autobuild@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5
41+
42+ - name : Perform CodeQL Analysis
43+ uses : github/codeql-action/analyze@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5
You can’t perform that action at this time.
0 commit comments