From 5e6364a09b744d92326fe6212cc522ade499d99f Mon Sep 17 00:00:00 2001 From: Brian Hawley Date: Fri, 16 Dec 2022 11:25:08 -0800 Subject: [PATCH] Fix CircleCI configuration CircleCI sent me an email indicating that the config settings for this repo were set to use a deprecated image (Ubuntu 14.04) because we didn't specify the image to use. The image option is required, per their docs; set it as recommended. --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1f0dded2..a1fbe50c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,7 @@ version: 2 jobs: test: machine: + image: ubuntu-2204:current docker_layer_caching: true working_directory: ~/codeclimate/codeclimate-rubocop steps: @@ -12,6 +13,7 @@ jobs: release_images: machine: + image: ubuntu-2204:current docker_layer_caching: true working_directory: ~/codeclimate/codeclimate-rubocop steps: