Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-smith authored Jan 22, 2025
1 parent 1659474 commit f723316
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
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

0 comments on commit f723316

Please sign in to comment.