fix(release): update Go version to 1.25 and migrate to homebrew_casks#43
Merged
platinummonkey merged 1 commit intoFeb 11, 2026
Merged
Conversation
Two critical fixes for the release workflow:
1. Updated Go version from 1.21 to 1.25 in release.yml
- Required for building with latest Go features and dependencies
2. Migrated from deprecated 'brews' to 'homebrew_casks' in .goreleaser.yml
- 'brews' was deprecated in GoReleaser v2.10
- Updated configuration structure:
- Removed 'directory: Formula' field
- Changed to modern 'binaries' format
- Simplified completions configuration
- Added 'url.verified' field for audit compliance
- Updated commit message template from formula to cask
Fixes:
- Release workflow failures from deprecated configuration
- Go version compatibility issues
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
📊 Test Coverage ReportThreshold: 80% ✅ Coverage by Package📈 Coverage Status: ✅ PASSED - Coverage meets minimum threshold Updated for commit 4ff4a10 |
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
Fixes two critical issues preventing successful releases:
brewsconfigurationProblem 1: Go Version
The release workflow was using Go 1.21, which is outdated and may cause compatibility issues with newer dependencies.
Problem 2: Deprecated
brewsConfigurationGoReleaser v2.10+ deprecated the
brewsfield with warning:Changes
.github/workflows/release.ymlgo-versionfrom1.21to1.25.goreleaser.ymlbrews:tohomebrew_casks:directory: Formulafieldbinaries: [pup]- explicit binary declarationcompletionsstructureurl.verifiedfield for Homebrew audit complianceMigration Details
The new
homebrew_casksconfiguration provides:Testing
.goreleaser.yamlconventionsRelated Issues
Fixes release workflow run #21914250220
🤖 Generated with Claude Code