Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: build test fmt lint run clean security
.PHONY: build test fmt lint run clean security security-full

VERSION ?= $(shell git describe --tags --always --dirty 2>/dev/null || echo "dev")

Expand Down Expand Up @@ -26,3 +26,7 @@ security:
gosec ./...
trufflehog git file://. --only-verified --fail
gitleaks detect --source . -v

security-full:
gitleaks detect --source . -v --log-opts="--all"
trufflehog git file://. --no-verification