ci: bump Go matrix to 1.23/stable (macOS Sequoia LC_UUID fix)#10
Merged
Conversation
Go 1.22 hits a dyld 'missing LC_UUID' linker bug on macOS Sequoia+ runners (golang/go#71920, fixed in 1.23.4). The bug is toolchain-side, not code: 5/6 matrix slots pass on v0.5.0, only macos-latest+1.22 aborts before any test runs. Bumping the CI matrix to 1.23 and stable removes the failing slot. go.mod still declares 'go 1.22' so consumers on 1.22 can use the library — CI only tests what it can build. Also document why the --auto flag in automerge.yml merged v0.5 despite the CI failure: without required status checks configured under main's branch protection, --auto degrades to an immediate merge. Enabling required checks in Settings -> Branches is the fix; this is a repo-config step, not a workflow change.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
There was a problem hiding this comment.
Pull request overview
Updates CI configuration to avoid a known Go 1.22 toolchain failure on macOS Sequoia+ GitHub runners, while documenting why --auto merges may not be gated by CI unless branch protection “required checks” are configured.
Changes:
- Bump the Go test matrix from
1.22to1.23(keepingstable) to avoid the macOS Sequoiadyld: missing LC_UUIDfailure. - Add inline documentation clarifying that
go.modstill targets Go 1.22 (consumer support unchanged) even though CI no longer exercises 1.22. - Document the GitHub auto-merge vs. required-checks interaction in the automerge workflow.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/test.yml | Updates the Go version matrix to 1.23/stable and documents the macOS runner/toolchain issue. |
| .github/workflows/automerge.yml | Adds workflow-level documentation about required status checks needed for --auto to actually defer merges. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Test plan
Follow-ups (outside this PR)