File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed
Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " github-actions"
4+ directory : " /"
5+ schedule :
6+ interval : " daily"
7+
8+ - package-ecosystem : " gomod"
9+ directory : " /"
10+ schedule :
11+ interval : " daily"
12+
13+ - package-ecosystem : " docker"
14+ directory : " /"
15+ schedule :
16+ interval : " weekly"
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 : " 44 15 * * 0"
10+
11+ jobs :
12+ analyze :
13+ name : Analyze
14+ runs-on : ubuntu-latest
15+
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ language : ["go"]
20+
21+ steps :
22+ - name : Checkout repository
23+ uses : actions/checkout@v2
24+
25+ - name : Initialize CodeQL
26+ uses : github/codeql-action/init@v1
27+ with :
28+ languages : ${{ matrix.language }}
29+
30+ - name : Autobuild
31+ uses : github/codeql-action/autobuild@v1
32+
33+ - name : Perform CodeQL Analysis
34+ uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments