diff options
author | Michael Muré <batolettre@gmail.com> | 2023-03-04 14:11:58 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2023-03-04 14:11:58 +0100 |
commit | 4477152319883cdebd5fbd8887ca092d9eaeea57 (patch) | |
tree | 550af6a26773082840008cf921d0a235a6b258aa /Makefile | |
parent | a1015493875963d75b3ca24caa31a2b65203309e (diff) | |
download | git-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-- | Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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: |