We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f26f11 commit 862ed88Copy full SHA for 862ed88
.github/workflows/pr-extra.yml
@@ -0,0 +1,19 @@
1
+name: Extra
2
+on:
3
+ push:
4
+ tags:
5
+ - v*
6
+ branches:
7
+ - master
8
+ pull_request:
9
+jobs:
10
+ vulns:
11
+ name: Vulnerability scanner
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-go@v2
16
+ # We cannot use nancy-github-action because it is outdated, so it's better to use the latest
17
+ # docker image for the validation
18
+ - name: nancy
19
+ run: go list -json -m all | docker run -i sonatypecommunity/nancy:latest
0 commit comments