From 04a729739d86af8cf066627f400c1244269257c3 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Mon, 8 Aug 2022 15:01:01 -0400 Subject: [PATCH] Update Go version It was found that the build steps were actually downloading an older version of Go 1.17 and not the expected latest version. This change explicitly sets the version of Go to be used for test builds. There has to be a better wait to do this so we may look to replace this config at a future time. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 26fed2731e..e225760ddc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,7 @@ executors: resource_class: medium+ darwin: macos: - xcode: "13.4.0" + xcode: "13.4.1" commands: install-go-run-tests-unix: @@ -58,14 +58,14 @@ jobs: steps: - install-go-run-tests-unix: GOOS: darwin - GOVERSION: "1.17" + GOVERSION: "1.17.13" test-windows: executor: name: win/vs2019 shell: bash.exe steps: - install-go-run-tests-windows: - GOVERSION: "1.17" + GOVERSION: "1.17.13" check-lint: executor: golang resource_class: xlarge