From 254f24753d61ac12179e05cea19c63d158a20536 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Tue, 4 Feb 2020 11:30:41 +0100 Subject: [PATCH] Use latest version of golang 1.13 in CI CircleCI has golang images without the patch versions which contain the latest patch version of golang. That way we do not need to remember to update the CI config on every patch release. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8f30525ab12..3aac70384f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: build: docker: - - image: circleci/golang:1.13.3 + - image: circleci/golang:1.13 environment: TEST_RESULTS: /tmp/test-results # path to where test results will be saved