Skip to content

Gitleaks

Gitleaks #103

Workflow file for this run

name: Gitleaks
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 4 * * *" # run once a day at 4 AM
permissions:
contents: read
pull-requests: write
jobs:
scan:
name: Gitleaks
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Gitleaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}