mirror of
https://github.com/lahfir/agent-desktop.git
synced 2026-08-17 04:25:59 +00:00
ci: scan git history for secrets, not just the checked-out tree
gitleaks dir only inspects the final tree, so a value added in one commit and removed in a later one passes the scan while staying reachable in the branch's history. Switch to git mode and fetch full history so the walk has commits to scan; a shallow clone would silently degrade it back to a tree scan. Verified: a secret added then removed across two commits is invisible to dir mode and caught by git mode. A full scan of the existing 454 commits reports no leaks, so history mode is clean to adopt.
This commit is contained in:
parent
4f286d9b62
commit
d1a573aaac
1 changed files with 9 additions and 1 deletions
10
.github/workflows/supply-chain.yml
vendored
10
.github/workflows/supply-chain.yml
vendored
|
|
@ -23,6 +23,11 @@ jobs:
|
|||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
with:
|
||||
# Full history so the secret scan below can walk commits, not just
|
||||
# the final tree. A shallow clone would silently reduce it to a
|
||||
# working-tree scan.
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Check release metadata consistency
|
||||
run: scripts/check-release-consistency.sh
|
||||
|
|
@ -52,7 +57,10 @@ jobs:
|
|||
"https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/${archive}"
|
||||
echo "${GITLEAKS_SHA256} ${archive}" | sha256sum --check --status
|
||||
tar -xzf "$archive" gitleaks
|
||||
./gitleaks dir . --config .gitleaks.toml --redact --no-banner --exit-code 1
|
||||
# Scan commit history, not just the checked-out tree: a value added
|
||||
# in one commit and removed in a later one stays reachable in branch
|
||||
# history, and a tree-only scan would pass it.
|
||||
./gitleaks git . --config .gitleaks.toml --redact --no-banner --exit-code 1
|
||||
|
||||
- name: Workflow security audit
|
||||
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
|
||||
|
|
|
|||
Loading…
Reference in a new issue