diff options
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index c7bb37917..8756f6992 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -112,9 +112,9 @@ commands: - /go/pkg/mod jobs: - test-llvm14-go116: + test-llvm14-go118: docker: - - image: golang:1.16-buster + - image: golang:1.18-buster steps: - test-linux: llvm: "14" @@ -131,7 +131,7 @@ workflows: jobs: # This tests our lowest supported versions of Go and LLVM, to make sure at # least the smoke tests still pass. - - test-llvm14-go116 + - test-llvm14-go118 # This tests a beta version of Go. It should be removed once regular # release builds are built using this version. - test-llvm14-go119 |