Skip to content

Release v1.1.7

Choose a tag to compare

@github-actions github-actions released this 08 Jun 23:12
· 6 commits to master since this release
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>