Skip to content

Commit ec8e8bd

Browse files
authored
fix: update go download url for linux (#275)
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.
1 parent 5900976 commit ec8e8bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci-setup-golang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ case $OS in
1212
Linux) OS="linux" ;;
1313
esac
1414

15-
curl "https://storage.googleapis.com/golang/go${GOVER}.${OS}-${ARCH}.tar.gz" --silent --location | tar -xz
15+
curl "https://go.dev/dl/go${GOVER}.${OS}-${ARCH}.tar.gz" --silent --location | tar -xz
1616

1717
export PATH="$(pwd)/go/bin:$PATH"
1818

0 commit comments

Comments
 (0)