From 5b484bb22ca3a737c1e18bca628a57a1df10eceb Mon Sep 17 00:00:00 2001 From: bigbear <155267841+aso20455@users.noreply.github.com> Date: Fri, 8 Aug 2025 11:28:17 +0200 Subject: [PATCH] fix: update Go download URLs from dl.google.com to go.dev --- build/ci.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/ci.go b/build/ci.go index 1ffbf3074..e7a62f2f4 100644 --- a/build/ci.go +++ b/build/ci.go @@ -764,7 +764,7 @@ func downloadGoBootstrapSources(cachedir string) string { log.Fatal(err) } file := fmt.Sprintf("go%s.src.tar.gz", gobootVersion) - url := "https://dl.google.com/go/" + file + url := "https://go.dev/dl/" + file dst := filepath.Join(cachedir, file) if err := csdb.DownloadFile(url, dst); err != nil { log.Fatal(err) @@ -780,7 +780,7 @@ func downloadGoSources(cachedir string) string { log.Fatal(err) } file := fmt.Sprintf("go%s.src.tar.gz", dlgoVersion) - url := "https://dl.google.com/go/" + file + url := "https://go.dev/dl/" + file dst := filepath.Join(cachedir, file) if err := csdb.DownloadFile(url, dst); err != nil { log.Fatal(err)