v2.6.8 - ESLint 10 stabilization and TS 6.0 compatibility #288
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| secrets: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: TruffleHog Secret Scanning | |
| uses: trufflesecurity/trufflehog@main | |
| with: | |
| path: ./ | |
| base: ${{ github.event.before || 'HEAD~1' }} | |
| head: HEAD | |
| extra_args: --only-verified | |
| continue-on-error: true | |
| - name: GITLEAKS Secret Scanning | |
| uses: gitleaks/gitleaks-action@v2 | |
| continue-on-error: true |