Skip to content

Commit f7e0ea1

Browse files
authored
fix: use govulncheck -scan=module for library CI (#19)
Libraries should scan dependencies, not stdlib — the stdlib version is the consumer's choice. -scan=module checks only go.mod deps.
1 parent c316f8b commit f7e0ea1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ doc:
1010

1111
lint:
1212
go tool golangci-lint run
13-
go tool govulncheck ./...
13+
go tool govulncheck -scan=module
1414

1515
bench:
1616
go test -run=^$$ -bench=. -benchmem ./...

0 commit comments

Comments
 (0)