Bump snyk/actions from 2f3c869154a3036de8e53db79251b67d10cfb91f to 10a13eb1b556d09c820d6dbc05233e68b30f10b0 #2872
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: gitleaks | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| # ┌───────────── minute (0 - 59) | |
| # │ ┌───────────── hour (0 - 23) | |
| # │ │ ┌───────────── day of the month (1 - 31) | |
| # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) | |
| # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) | |
| # │ │ │ │ │ | |
| # │ │ │ │ │ | |
| # │ │ │ │ │ | |
| # * * * * * | |
| - cron: "0 4 * * *" # run once a day at 4 AM | |
| jobs: | |
| scan: | |
| name: gitleaks | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: gitleaks/gitleaks-action@bf2dc8e55639c1e091e9b45970152e4313705814 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Only required for Organizations, not personal accosunts. | |
| # GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}} |