Skip to content

Commit

Permalink
removed automatic vuln checks
Browse files Browse the repository at this point in the history
  • Loading branch information
markus-noga committed Oct 10, 2023
1 parent e1d71d7 commit ca9dfa8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
- name: install golang
uses: actions/setup-go@v3

- name: install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
# - name: install govulncheck
# run: go install golang.org/x/vuln/cmd/govulncheck@latest

- uses: actions/checkout@v3

- name: build Linux amd64
run: make nightlight_linux_amd64

- name: run vulnerability check
run: govulncheck ./...
# - name: run vulnerability check
# run: govulncheck ./...

- name: tests
run: make tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
- name: install golang
uses: actions/setup-go@v3

- name: install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
# - name: install govulncheck
# run: go install golang.org/x/vuln/cmd/govulncheck@latest

- name: checkout
uses: actions/checkout@v3

- name: build Linux amd64
run: make nightlight_linux_amd64

- name: run vulnerability check
run: govulncheck ./...
# - name: run vulnerability check
# run: govulncheck ./...

- name: tests
run: make tests
Expand Down

0 comments on commit ca9dfa8

Please sign in to comment.