Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the project's Go version from 1.23.6 to 1.24 across all modules and updates the CI pipeline accordingly.
- Updates Go version to 1.24 in all go.mod files and the workspace file
- Updates CI matrix to test against Go 1.24.x and 1.25.x
- Updates dependencies (golang.org/x/sys, github.com/google/go-cmp) to newer versions
Reviewed Changes
Copilot reviewed 13 out of 15 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| volume/go.mod | Updates Go version from 1.23.6 to 1.24 |
| network/go.mod | Updates Go version from 1.23.6 to 1.24 |
| legacyadapters/go.sum | Updates golang.org/x/sys dependency to v0.33.0, but missing go.mod entry line |
| legacyadapters/go.mod | Updates Go version to 1.24 and golang.org/x/sys to v0.33.0 |
| image/go.mod | Updates Go version from 1.23.6 to 1.24 |
| go.work | Updates workspace Go version from 1.23.6 to 1.24 |
| context/go.mod | Updates Go version from 1.23.6 to 1.24 |
| container/wait/testdata/http/go.mod | Updates Go version to 1.24 and removes toolchain directive |
| container/wait/testdata/http/Dockerfile | Updates base image from golang:1.23-alpine to golang:1.24-alpine3.22 |
| container/go.mod | Updates Go version from 1.23.6 to 1.24 |
| config/go.sum | Updates github.com/google/go-cmp dependency to v0.7.0, but missing go.mod entry line |
| config/go.mod | Updates Go version to 1.24 and adds github.com/google/go-cmp v0.7.0 |
| client/go.mod | Updates Go version from 1.23.6 to 1.24 |
| .github/workflows/ci.yml | Updates CI matrix to test against Go versions 1.24.x and 1.25.x |
| .github/workflows/ci-test-go.yml | Updates Sonar condition to use Go version 1.24.x |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mdelapenya
added a commit
to ndeloof/go-sdk
that referenced
this pull request
Nov 6, 2025
* main: deps(go): bump Go to 1.24 (docker#120)
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.
What does this PR do?
It bumps Go to 1.24 in all modules and the CI.
The CI uses a two-version window, using latest and latest-1
Why is it important?
Move the project to use the latest releases of the language