Skip to content

Commit cff35cd

Browse files
committed
WIP
1 parent 01d5c5d commit cff35cd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/vuln.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build project
2+
on:
3+
push:
4+
branches:
5+
- main
6+
schedule:
7+
# Mondays at 0000
8+
- cron: "0 0 * * 1"
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
- id: govulncheck
15+
uses: golang/govulncheck-action@v1
16+
with:
17+
sarif-file: govulncheck.sarif
18+
- name: Upload SARIF file
19+
uses: github/codeql-action/upload-sarif@v2
20+
with:
21+
sarif_file: govulncheck.sarif
22+
category: govulncheck

0 commit comments

Comments
 (0)