chore(deps): bump rollup from 4.57.1 to 4.59.0 #3
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 Scan | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| gitleaks: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # Gitleaks scans git commit ranges on PRs/pushes; shallow clones can | |
| # miss the base commit and cause "unknown revision" failures. | |
| fetch-depth: 0 | |
| - name: Run gitleaks | |
| uses: gitleaks/gitleaks-action@v2 | |
| with: | |
| # Let the action run its default git-range scan and only pass | |
| # scanner options. | |
| args: --config .gitleaks.toml --redact |