While testing CI automation recently, I noticed that some newer versions (for example, go1.24.9) are missing from the GCS bucket and return a 403 error, while the same version downloads correctly from dl.google.com. I recall experiencing similar issues in the past.
https://storage.googleapis.com/golang/go1.24.9.linux-amd64.tar.gz
https://dl.google.com/go/go1.24.9.linux-amd64.tar.gz
That raises a few questions:
Is storage.googleapis.com/golang still expected to stay in sync with official releases?
Should all automated scripts and CI pipelines migrate to using dl.google.com/go (or go.dev/dl) as the canonical source going forward?
Is there any long-term plan for deprecating the GCS bucket, or will it continue as a public mirror?
Understanding the intended support policy would help clarify best practices for CI environments and installers that currently depend on storage.googleapis.com/golang.
Thanks in advance for any clarification!
Mauri