File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : gomod
4+ directory : " /"
5+ schedule :
6+ interval : weekly
7+ day : monday
8+ time : " 06:00"
9+ timezone : Etc/UTC
10+ open-pull-requests-limit : 5
11+ groups :
12+ gomod-security :
13+ applies-to : security-updates
14+ patterns :
15+ - " *"
16+ gomod-minor-patch :
17+ applies-to : version-updates
18+ update-types :
19+ - minor
20+ - patch
21+
22+ - package-ecosystem : github-actions
23+ directory : " /"
24+ schedule :
25+ interval : weekly
26+ day : monday
27+ open-pull-requests-limit : 3
28+ groups :
29+ actions :
30+ patterns :
31+ - " *"
Original file line number Diff line number Diff line change 1+ name : CodeQL
2+
3+ on :
4+ push :
5+ branches : [master, main]
6+ pull_request :
7+ branches : [master, main]
8+ schedule :
9+ - cron : ' 17 6 * * 1'
10+
11+ permissions :
12+ actions : read
13+ contents : read
14+ security-events : write
15+
16+ jobs :
17+ analyze :
18+ name : Analyze (Go)
19+ runs-on : ubuntu-latest
20+ timeout-minutes : 30
21+ steps :
22+ - uses : actions/checkout@v4
23+ - uses : actions/setup-go@v5
24+ with :
25+ go-version-file : go.mod
26+ - uses : github/codeql-action/init@v3
27+ with :
28+ languages : go
29+ queries : security-extended
30+ - run : go build ./...
31+ - uses : github/codeql-action/analyze@v3
32+ with :
33+ category : " /language:go"
Original file line number Diff line number Diff line change 1+ name : govulncheck
2+
3+ on :
4+ push :
5+ branches : [master, main]
6+ pull_request :
7+ branches : [master, main]
8+ schedule :
9+ - cron : ' 0 6 * * *'
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ govulncheck :
16+ runs-on : ubuntu-latest
17+ timeout-minutes : 15
18+ steps :
19+ - uses : actions/checkout@v4
20+ - uses : actions/setup-go@v5
21+ with :
22+ go-version-file : go.mod
23+ check-latest : true
24+ - run : go install golang.org/x/vuln/cmd/govulncheck@latest
25+ - run : govulncheck ./...
Original file line number Diff line number Diff line change 1+ name : OSV-Scanner
2+
3+ on :
4+ push :
5+ branches : [master, main]
6+ pull_request :
7+ branches : [master, main]
8+ schedule :
9+ - cron : ' 0 6 * * *'
10+
11+ permissions :
12+ actions : read
13+ contents : read
14+ security-events : write
15+
16+ jobs :
17+ scan :
18+ uses : google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.0.1
19+ permissions :
20+ actions : read
21+ contents : read
22+ security-events : write
You can’t perform that action at this time.
0 commit comments