From 132b300887db5f0cd41349cded4333ce0e2430e3 Mon Sep 17 00:00:00 2001 From: AJ Kerrigan Date: Tue, 13 Jan 2026 11:26:43 -0500 Subject: [PATCH] fix: update go download url for linux Our Linux builds use a custom script that fetches a Go binary from a Google storage bucket. The URL pattern in release announcement uses go.dev/dl instead, and the availability of binaries through storage bucket links seems inconsistent recently: _https://groups.google.com/g/golang-nuts/c/xL-B4XggX04?pli=1 So let's do what Google says we should anyway. --- ci-setup-golang.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-setup-golang.sh b/ci-setup-golang.sh index 3f3b3be..aff6fbd 100755 --- a/ci-setup-golang.sh +++ b/ci-setup-golang.sh @@ -12,7 +12,7 @@ case $OS in Linux) OS="linux" ;; esac -curl "https://storage.googleapis.com/golang/go${GOVER}.${OS}-${ARCH}.tar.gz" --silent --location | tar -xz +curl "https://go.dev/dl/go${GOVER}.${OS}-${ARCH}.tar.gz" --silent --location | tar -xz export PATH="$(pwd)/go/bin:$PATH"