From a2d079248b102494436a41ede0d458f433ae24a0 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Mon, 18 Jul 2022 15:49:18 -0400 Subject: [PATCH] Updating the circleci image we use The previous circleci images were deprecated and no longer getting updates. The version of Go included had known CVEs. This moves to the newer images which container newer patch versions of Go. Closes #11105 Signed-off-by: Matt Farina --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7a9c4874dc0..231b069247e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ jobs: build: working_directory: ~/helm.sh/helm docker: - - image: circleci/golang:1.17 + - image: cimg/go:1.17 auth: username: $DOCKER_USER