Update CI to test against Go 1.25, 1.24, and 1.23#20
Merged
Conversation
Co-authored-by: costela <94699+costela@users.noreply.github.com>
Co-authored-by: costela <94699+costela@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update CI setup for latest golang release
Update CI to test against Go 1.25, 1.24, and 1.23
Nov 23, 2025
costela
approved these changes
Nov 23, 2025
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the CI configuration to test against multiple Go versions (1.25, 1.24, 1.23) instead of a single version (1.21), and bumps the minimum Go version requirement in go.mod from 1.21 to 1.23.
Key Changes:
- CI workflow now tests against three Go versions instead of one
- Minimum Go version requirement increased from 1.21 to 1.23
- Cleanup of unused
google.golang.org/protobufindirect dependency
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/main.yaml |
Updated test matrix to run against Go 1.25, 1.24, and 1.23 |
go.mod |
Bumped minimum Go version from 1.21 to 1.23 and removed unused protobuf dependency |
go.sum |
Removed checksums for unused google.golang.org/protobuf dependency |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
obitech
approved these changes
Dec 10, 2025
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.
Updates CI to test against the latest Go release (1.25) plus the two prior releases (1.24, 1.23), replacing the previous single-version test against Go 1.21.
Changes
.github/workflows/main.yaml: Updated test matrix to['1.25', '1.24', '1.23']go.mod: Bumped minimum version from1.21to1.23to match the minimum tested versionThis aligns with Go's support policy (latest 2 versions are officially supported: 1.25, 1.24) while maintaining coverage of 1.23 for users who haven't upgraded.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.