Skip to content

Secret Scan

Secret Scan #50

Workflow file for this run

name: Secret Scan
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "41 11 * * 1"
workflow_dispatch:
permissions:
contents: read
security-events: write
jobs:
gitleaks:
name: Gitleaks
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Run Gitleaks
uses: gitleaks/gitleaks-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}