From 5d6654dab1ff7bc81b6d2475c9b0447cfccb4e17 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 5 Feb 2020 06:21:15 +0100 Subject: [PATCH] Use latest version of golang 1.13 in CI (#465) 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