Skip to content

fix(hunt): stabilize autonomous mode reliability #208

fix(hunt): stabilize autonomous mode reliability

fix(hunt): stabilize autonomous mode reliability #208

Workflow file for this run

name: Secret Scan
on:
pull_request:
branches: [master, main]
push:
branches: [master, main]
permissions:
contents: read
jobs:
gitleaks:
name: gitleaks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Install gitleaks
run: |
VERSION=8.28.0
curl -sSfL "https://github.com/gitleaks/gitleaks/releases/download/v${VERSION}/gitleaks_${VERSION}_linux_x64.tar.gz" \
| tar -xz -C /usr/local/bin gitleaks
- name: Run gitleaks
run: gitleaks detect --source . --no-git --redact --config .gitleaks.toml