From 67554679bc69ddf667732a127417f4e30ddc4b8e Mon Sep 17 00:00:00 2001 From: Bradley Laney Date: Fri, 25 Oct 2024 14:51:42 -0400 Subject: [PATCH] chore: bump Go version used by CI builds to 1.22.8 (#10127) --- .circleci/real_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/real_config.yml b/.circleci/real_config.yml index 3ba282ebaf7..0f7bbd7ca72 100644 --- a/.circleci/real_config.yml +++ b/.circleci/real_config.yml @@ -308,7 +308,7 @@ commands: reinstall-go: steps: - run: sudo rm -rf /usr/local/go # Remove system go. - - run: tools/scripts/retry.sh curl --retry-connrefused --retry 10 https://dl.google.com/go/go1.22.0.linux-amd64.tar.gz -o /tmp/go.linux-amd64.tar.gz + - run: tools/scripts/retry.sh curl --retry-connrefused --retry 10 https://dl.google.com/go/go1.22.8.linux-amd64.tar.gz -o /tmp/go.linux-amd64.tar.gz - run: sudo tar -C /usr/local -xzf /tmp/go.linux-amd64.tar.gz - run: echo 'export PATH=$PATH:$HOME/go/bin' >> $BASH_ENV