aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-03-04 14:11:58 +0100
committerMichael Muré <batolettre@gmail.com>2023-03-04 14:11:58 +0100
commit4477152319883cdebd5fbd8887ca092d9eaeea57 (patch)
tree550af6a26773082840008cf921d0a235a6b258aa /Makefile
parenta1015493875963d75b3ca24caa31a2b65203309e (diff)
downloadgit-bug-4477152319883cdebd5fbd8887ca092d9eaeea57.tar.gz
tools: fix how security tools are setup and launched
fix https://github.com/MichaelMure/git-bug/issues/1018
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 46c307f4..cfc59984 100644
--- a/Makefile
+++ b/Makefile
@@ -39,16 +39,11 @@ secure: secure-practices secure-vulnerabilities
.PHONY: secure-practices
secure-practices:
-# 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
+ go run github.com/praetorian-inc/gokart scan
.PHONY: secure-vulnerabilities
secure-vulnerabilities:
- go install golang.org/x/vuln/cmd/govulncheck
- govulncheck ./...
+ go run golang.org/x/vuln/cmd/govulncheck ./...
.PHONY: test
test: