build: TRG-8-03 enable TruffleHog secrets scan #2
Workflow file for this run
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
name: "Secrets scan: TruffleHog" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" # Once a day | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
id-token: write | |
issues: write | |
jobs: | |
ScanSecrets: | |
name: Scan secrets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Ensure full clone for pull request workflows | |
ref: ${{ github.head_ref }} # Fetch specific branch/commit for pull requests | |
- name: TruffleHog OSS | |
id: trufflehog | |
uses: trufflesecurity/trufflehog@main | |
continue-on-error: true | |
with: | |
path: ./ # Scan the entire repository | |
base: "${{ github.event.repository.default_branch }}" # Set base branch for comparison (pull requests) | |
extra_args: --filter-entropy=4 --results=verified,unknown --debug | |
- name: Scan Results Status | |
if: steps.trufflehog.outcome == 'failure' | |
run: exit 1 # Set workflow run to failure if TruffleHog finds secrets |