From 5c18eb368807c6700b8329bf608d5fa674a6337b Mon Sep 17 00:00:00 2001 From: Haritha <73516759+HarithaVattikuti@users.noreply.github.com> Date: Tue, 2 Dec 2025 20:40:08 -0600 Subject: [PATCH] fix: update download URL for Go binaries to new location (#127) --- builders/go-builder.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/go-builder.psm1 b/builders/go-builder.psm1 index e3c5814..468b8b7 100644 --- a/builders/go-builder.psm1 +++ b/builders/go-builder.psm1 @@ -66,7 +66,7 @@ class GoBuilder { $filename = "$goVersion.$goPlatform-$arch.$ArchiveType" - return "https://storage.googleapis.com/golang/$filename" + return "https://go.dev/dl/$filename" } [string] Download() {