@@ -39,12 +39,15 @@ secure: secure-practices secure-vulnerabilities
.PHONY: secure-practices
secure-practices:
- go install github.com/praetorian-inc/gokart
+# TODO: change pinned version of GoKart to "latest" once PR #84 is merged
+# https://github.com/praetorian-inc/gokart/pull/84
+# go install github.com/praetorian-inc/gokart@latest
+ go install github.com/selesy/gokart-pre
gokart scan
.PHONY: secure-vulnerabilities
secure-vulnerabilities:
- go install golang.org/x/vuln/cmd/govulncheck@latest
+ go install golang.org/x/vuln/cmd/govulncheck
govulncheck ./...
.PHONY: test