Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/govulnfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest

- name: Install vulnfix
run: go install github.com/hamba/vulnfix@latest

# govulncheck exits 3 when vulnerabilities are found; we want to continue to vulnfix, so we ignore the exit code.
- name: Run govulncheck
run: |
Expand All @@ -46,6 +43,9 @@ jobs:
check-latest: true
cache: false

- name: Install vulnfix
run: go install github.com/hamba/vulnfix@latest

- name: Run vulnfix
run: vulnfix -o /tmp/vuln.md < /tmp/govulncheck-output.json

Expand Down
Loading