Skip to content

Commit 548c5d4

Browse files
authored
Merge pull request #22035 from ComradeProgrammer/fix_prow
ci: fix incorrect golang download url
2 parents 1200576 + 1907efa commit 548c5d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hack/jenkins/installers/check_install_golang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function install_golang() {
8484
# using sudo because previously installed versions might have been installed by a different user.
8585
# as it was the case on jenkins VM.
8686
sudo rm -rf "$GO_TGZ"
87-
curl -qL -O "https://storage.googleapis.com/golang/$GO_TGZ"
87+
curl -qL -O "https://go.dev/dl/$GO_TGZ"
8888
sudo rm -rf "$GO_DIR"
8989
sudo mkdir -p "$GO_DIR"
9090
sudo tar -C "$GO_DIR" --strip-components=1 -xzf "$GO_TGZ"

hack/prow/installer/check_install_golang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function install_golang() {
8989
9090
# using sudo because previously installed versions might have been installed by a different user.
9191
sudo rm -rf "$GO_TGZ"
92-
curl -qL -O "https://storage.googleapis.com/golang/$GO_TGZ"
92+
curl -qL -O "https://go.dev/dl/$GO_TGZ"
9393
sudo rm -rf "$GO_DIR"
9494
sudo mkdir -p "$GO_DIR"
9595
sudo tar -C "$GO_DIR" --strip-components=1 -xzf "$GO_TGZ"

0 commit comments

Comments
 (0)