Skip to content

Commit

Permalink
Fix CircleCI configuration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
BrianHawley committed Dec 16, 2022
1 parent af40822 commit 7b384f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -12,6 +13,7 @@ jobs:

release_images:
machine:
image: ubuntu-2204:2022.10.2
docker_layer_caching: true
working_directory: ~/codeclimate/codeclimate-rubocop
steps:
Expand Down

0 comments on commit 7b384f9

Please sign in to comment.