fix(nixos): migrate removed programs.adb option; add status report #48
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: Secret history scan | |
| # Decompress-aware full-history secret scan. Supersedes gitleaks for this | |
| # repo: gitleaks scans blob bytes literally and reported "no leaks found" | |
| # while a gzip'd "iTerm2 State.itermexport" sat in public history carrying | |
| # 1x Google Gemini + 3x Groq keys (2026-02-09 .. 2026-08-18 incident). | |
| # gitleaks also has no Context7 (ctx7sk-) rule. See scripts/scan-history-secrets.sh. | |
| on: | |
| push: | |
| branches: [master] | |
| schedule: | |
| - cron: "23 4 * * 1" | |
| jobs: | |
| secret-history-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Scan full git history (gzip-aware) | |
| run: bash scripts/scan-history-secrets.sh . |