chore(deps)(deps): bump the minor-and-patch group with 2 updates #57
Workflow file for this run
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: Secret Scanning (TruffleHog) | |
| # Scans every push and PR for accidentally committed secrets such as | |
| # API keys, Discord tokens, database passwords, OAuth secrets, etc. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 7 * * 1' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| trufflehog: | |
| name: Scan for secrets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⬇️ Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: 🔐 TruffleHog OSS | |
| uses: trufflesecurity/trufflehog@main | |
| with: | |
| extra_args: --results=verified,unknown |