Skip to content

Commit 3a8abf2

Browse files
author
Sergey Vilgelm
committed
Run nancy validation for all dependencies
1 parent 4f26f11 commit 3a8abf2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pr-extra.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 -m all | docker run -i sonatypecommunity/nancy:latest

0 commit comments

Comments
 (0)