From 7b384f94e3bd59eead236695b82d2a1fecbf5dd8 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..0dea7b27 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,7 @@ version: 2 jobs: test: machine: + image: ubuntu-2204:2022.10.2 docker_layer_caching: true working_directory: ~/codeclimate/codeclimate-rubocop steps: @@ -12,6 +13,7 @@ jobs: release_images: machine: + image: ubuntu-2204:2022.10.2 docker_layer_caching: true working_directory: ~/codeclimate/codeclimate-rubocop steps: