This repository was archived by the owner on Feb 5, 2026. It is now read-only.
Pin trufflehog to SHA #13
This file contains hidden or 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: "trufflehog" | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| jobs: | |
| scan: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: "actions/checkout@v4" | |
| with: | |
| fetch-depth: 0 | |
| # Pinned to SHA for supply chain security (main branch as of 2024) | |
| - uses: "trufflesecurity/trufflehog@a633174c3b2242aa1b6f8941d2ad6a99e0305964" | |
| with: | |
| extra_args: "--results=verified,unknown" |