Add trufflehog command (#3902)

* Add trufflehog command to pantry

* Search for an exact string instead of a regex pattern

* Fix the test by piping stderr into stdout

* Fix audit: Move trufflehog cli to trufflehog directory

* Fix audit: Rename to use the domain of trufflehog
This commit is contained in:
Kishan B 2023-11-01 00:06:53 +05:30 committed by GitHub
parent b3e312839a
commit 1308e6ce78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

3
.gitignore vendored
View file

@ -6,3 +6,6 @@
#TODO commit after v1
/deno.lock
# IntelliJ IDE Folder
.idea/

View file

@ -0,0 +1,26 @@
distributable:
url: https://github.com/trufflesecurity/trufflehog/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: trufflesecurity/trufflehog
provides:
- bin/trufflehog
build:
dependencies:
go.dev: ^1.21
script:
- go build -v -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/trufflehog
env:
CGO_ENABLED: 0
LDFLAGS:
- -s
- -w
- -X=github.com/trufflesecurity/trufflehog/v3/pkg/version.BuildVersion={{version}}
test:
trufflehog --version 2>&1 | grep -F "{{version}}"