You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: stop staging trivy cache in release workflow
The v1.1.6 release run created the GitHub release fine but failed on the
final push: `git add .` swept Trivy's multi-GB vuln DB (./.cache) into the
commit, exceeding GitHub's 100 MB file limit, so the version-bump commit
never reached master.
- release.yml: `git add .` -> `git add -u` (stage tracked files only)
- .gitignore: ignore ./.cache so the scanner DB can't be committed
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>