Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4.2] Bug 1755780: Disabled gosec #200

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 1 addition & 6 deletions Makefile
Expand Up @@ -52,7 +52,7 @@ check: verify test-unit test-integration
#
# Example:
# make verify
verify: verify-fmt verify-govet verify-imports verify-sec
verify: verify-fmt verify-govet verify-imports
.PHONY: verify

verify-fmt:
Expand All @@ -67,11 +67,6 @@ verify-imports:
hack/verify-imports.sh
.PHONY: verify-imports

verify-sec:
go get -u github.com/securego/gosec/cmd/gosec
gosec -severity medium -confidence medium -exclude G304 -quiet ./...
.PHONY: verify-sec

LOGFUNCS=Debug Info Warn Warning Error
null :=
space := $(null) #
Expand Down