Skip redundant-version check in brew audit#7
Merged
Conversation
GoReleaser regenerates Formula/band.rb on every release with an explicit version field. brew audit --strict flags this as redundant since the version can be parsed from the URL. The previous workaround was to hand-edit each goreleaser PR, which does not survive the next release. Pass --except=version to skip just the version checks while keeping the rest of the strict audit (description, license, URLs, etc.).
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
joshraub-bw
approved these changes
May 1, 2026
ckoegel
approved these changes
May 1, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
GoReleaser regenerates
Formula/band.rbon every release with an explicitversionfield.brew audit --strictflags this as redundant since the version can be parsed from the URL (/v0.1.0-beta/band_0.1.0-beta_*.tar.gz).We've already hand-edited the formula to remove this line twice (commits
266a39f8,032387d2) — but goreleaser re-emits it on every release, so the manual fix doesn't survive. The current goreleaser PR for v0.1.0-beta (#6) is failing audit for the same reason.Pass
--except=versionto skip just the version-related checks while keeping the rest of the strict audit (description, license, URLs, style, etc.).Test plan