aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2023-01-03 08:31:43 -0500
committerSteve Moyer <smoyer1@selesy.com>2023-01-03 08:31:43 -0500
commit344438b9cb216dd878221600071d3ac8093ad34b (patch)
tree30dff68cf481fc5e1130a53cf28bc523fd240f18 /Makefile
parentd11ea5c2adec0fd92be30d3e3bdd1b5679d4118c (diff)
downloadgit-bug-344438b9cb216dd878221600071d3ac8093ad34b.tar.gz
fix(972): use prerelease of GoKart with repaired panic
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 14cf444d..46c307f4 100644
--- a/Makefile
+++ b/Makefile
@@ -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