Skip to main content

.github/workflows/secret-scan.yml

Metadata

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

name: Secret Scan

on:
pull_request:
push:
branches: ["main"]

permissions:
contents: read

jobs:
trufflehog:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run TruffleHog filesystem scan
run: |
docker run --rm \
-v "$PWD:/repo" \
trufflesecurity/trufflehog:latest \
filesystem /repo --results=verified,unknown --fail