-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1659474
commit f723316
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: TruffleHog Secrets Scan | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
scan-secrets: | ||
name: Run TruffleHog Scan | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Step 1: Check out the repository | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Ensures full history for accurate scanning | ||
|
||
# Step 2: Run TruffleHog scan | ||
- name: Run TruffleHog | ||
uses: trufflesecurity/trufflehog@main | ||
with: | ||
extra_args: --only-verified # Optional: add custom arguments if needed | ||
|
||
# Step 3: Upload scan results as an artifact (optional) | ||
- name: Upload Scan Results | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: trufflehog-results | ||
path: ./trufflehog-results.json |