From 5b8daca3829560b0e49d4b4b624e9e756818e673 Mon Sep 17 00:00:00 2001 From: Stefan Kurek Date: Wed, 11 Sep 2024 16:21:33 -0400 Subject: [PATCH] Update go version used by integration tests --- integration_test/ops_agent_test/main_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_test/ops_agent_test/main_test.go b/integration_test/ops_agent_test/main_test.go index a8756b34837..5b0e455c14c 100644 --- a/integration_test/ops_agent_test/main_test.go +++ b/integration_test/ops_agent_test/main_test.go @@ -4111,10 +4111,10 @@ func installGolang(ctx context.Context, logger *log.Logger, vm *gce.VM) error { return err } - // To update this, first run `mirror_content.sh` in this directory. Example: + // To update this, first run `mirror_content.sh` under `integration_test`. Example: // ./mirror_content.sh https://go.dev/dl/go1.21.4.linux-{amd64,arm64}.tar.gz // Then update this version. - goVersion := "1.21.4" + goVersion := "1.22.7" goArch := "amd64" if gce.IsARM(vm.ImageSpec) {