Skip to content

Replace unstable PyPI badges in README #15

Replace unstable PyPI badges in README

Replace unstable PyPI badges in README #15

Workflow file for this run

name: secret-scan
on:
pull_request:
push:
branches:
- main
- "codex/**"
jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install gitleaks
run: |
set -euo pipefail
VERSION=8.28.0
curl -sSfL "https://github.com/gitleaks/gitleaks/releases/download/v${VERSION}/gitleaks_${VERSION}_linux_x64.tar.gz" \
| tar -xz
sudo install gitleaks /usr/local/bin/gitleaks
- name: Run gitleaks
run: gitleaks git . --log-opts="-1" --redact --no-banner --exit-code 1 --verbose