From 27dce1a2a26af46aca5e7f4351445e4ef66dcb05 Mon Sep 17 00:00:00 2001 From: Austin Roberts Date: Fri, 30 Dec 2022 11:36:01 -0600 Subject: [PATCH] Pin specific version of go build container --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dc4f77662..e16fd1694 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ version: 2.1 jobs: test: docker: - - image: cimg/go:1.19 + - image: cimg/go:1.19.4 steps: - checkout - run: @@ -38,7 +38,7 @@ jobs: command: go test ./core/rawdb/ build_geth_push: docker: # run the steps with Docker - - image: cimg/go:1.19 # ...with this image as the primary container + - image: cimg/go:1.19.4 # ...with this image as the primary container # this is where all `steps` will run steps: - checkout