Skip to content

Commit

Permalink
Update Go version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nywilken committed Aug 8, 2022
1 parent 7b479a3 commit 04a7297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -15,7 +15,7 @@ executors:
resource_class: medium+
darwin:
macos:
xcode: "13.4.0"
xcode: "13.4.1"

commands:
install-go-run-tests-unix:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 04a7297

Please sign in to comment.