You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Trufflehog Actions Scan
v0.9c-beta
Scan repository for secrets with basic trufflehog defaults in place for easy setup.
workflow "Detect Secrets" {
on = "push"
resolves = ["edplato/trufflehog-actions-scan"]
}
action "edplato/trufflehog-actions-scan" {
uses = "edplato/trufflehog-actions-scan@master"
}
Default trufflehog options for this tool include:
-
regex : Enable high signal regex checks
-
entropy disabled: Disabled entropy checks
-
max depth is 50: The max commit depth to go back when searching for secrets
Edit your corresponding actions yml
file or create a new one.
steps:
- uses: actions/checkout@master
- name: trufflehog-actions-scan
uses: edplato/trufflehog-actions-scan@master
steps:
- uses: actions/checkout@master
- name: trufflehog-actions-scan
uses: edplato/trufflehog-actions-scan@master
with:
args:
- "--regex --entropy=False --max_depth=5" # Add custom options here*
*if custom options argument string is used, it will overwrite default settings