Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the Go download URL from the deprecated storage.googleapis.com/golang endpoint to the official and supported https://go.dev/dl/ CDN. The old googleapis.com URLs have been unsupported since Go's CDN migration in 2017 and may no longer be reliable.
Key Changes:
- Updated the
GetBinariesUri()method inGoBuilderclass to use the official Go CDN URL
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Looks like this started breaking indeed; Setup go version spec 1.25.5
Attempting to download 1.25.5...
matching 1.25.5...
Not found in manifest. Falling back to download directly from Go
Install from dist
Acquiring go1.25.5 from [https://storage.googleapis.com/golang/go1.25.5.windows-amd64.zip](https://storage.googleapis.com/golang/go1.25.5.windows-amd64.zip)
Error: Failed to download version 1.25.5: Error: Unexpected HTTP response: 403 |
|
Confirmed |
We hit this as well. |
4 tasks
robbat2
approved these changes
Dec 3, 2025
priyagupta108
approved these changes
Dec 3, 2025
aparnajyothi-y
approved these changes
Dec 3, 2025
stevenhorsman
added a commit
to stevenhorsman/cloud-api-adaptor
that referenced
this pull request
Dec 3, 2025
Due to the removal of storage.googleapis.com/golang (actions/go-versions#127), some of the golang installs are failing, so update setup-go action to 6.1.0 which has a fix for this: https://github.com/actions/setup-go/releases/tag/v6.1.0 Signed-off-by: stevenhorsman <steven@uk.ibm.com>
stevenhorsman
added a commit
to confidential-containers/cloud-api-adaptor
that referenced
this pull request
Dec 3, 2025
Due to the removal of storage.googleapis.com/golang (actions/go-versions#127), some of the golang installs are failing, so update setup-go action to 6.1.0 which has a fix for this: https://github.com/actions/setup-go/releases/tag/v6.1.0 Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This was referenced Dec 3, 2025
christophetd
added a commit
to DataDog/stratus-red-team
that referenced
this pull request
Dec 11, 2025
christophetd
added a commit
to DataDog/stratus-red-team
that referenced
this pull request
Dec 11, 2025
* Fix setup-go GitHub Action per actions/go-versions#127 * Add dl.google.com as an allowed domain * Bump Go version in tests to 1.23
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.
The storage.googleapis.com/golang URLs were originally used prior to Go's migration to a CDN in 2017 and are no longer intended for ongoing use. Downloading files from these URLs is unsupported and may not remain reliable.
This PR updates the URLs to use the official Go downloads page (https://go.dev/dl/), which provides current and supported links for Go release files.