Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
go-version: '1.24.4'

- name: make verify
env:
OSS_TOKEN: ${{ secrets.OSS_TOKEN }}
OSS_USERNAME: ${{ secrets.OSS_USERNAME }}
run: make verify

- name: make lint
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ govulncheck-scan: govulncheck ## Perform govulncheck scan

.PHONY: nancy-scan
nancy-scan: nancy ## Perform nancy scan
go list -json -deps ./... | $(NANCY) sleuth
@go list -json -deps ./... | $(NANCY) sleuth --token=$(OSS_TOKEN) --username=$(OSS_USERNAME)

##@ Documentation
.PHONY: generate-doctoc
Expand Down
Loading