Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update golang version used in TestOTLPMetricsGMP test #1509

Merged
merged 9 commits into from
Nov 16, 2023
2 changes: 1 addition & 1 deletion integration_test/ops_agent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3884,7 +3884,7 @@ func unmarshalResource(in string) (*resourcedetector.GCEResource, error) {
// the PATH before calling `go` as goPath
func installGolang(ctx context.Context, logger *logging.DirectoryLogger, vm *gce.VM) error {
// TODO: use runtime.Version() to extract the go version
goVersion := "1.19"
goVersion := "1.20"
goArch := "amd64"
if gce.IsARM(vm.Platform) {
goArch = "arm64"
Expand Down
Loading