Skip to content

Commit

Permalink
Remove unnecessary Ruby version specification on CI
Browse files Browse the repository at this point in the history
This commit removes unnecessary Ruby version specification of
Docker image on CircleCI config.

The latest version is used if version is not specified,

```console
% docker pull circleci/ruby
Using default tag: latest
latest: Pulling from circleci/ruby
(snip)
```

With this change we don't have to update the version.
  • Loading branch information
koic authored and bbatsov committed Dec 29, 2018
1 parent ed20141 commit 78881a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
# Job for downloading the Code Climate test reporter
cc-setup:
docker:
- image: circleci/ruby:2.6
- image: circleci/ruby
environment:
<<: *common_env
steps:
Expand All @@ -247,7 +247,7 @@ jobs:
# Job for merging code coverage results and sending them to Code Climate
cc-upload-coverage:
docker:
- image: circleci/ruby:2.6
- image: circleci/ruby
environment:
CC_TEST_REPORTER_ID: a11b66bfbb1acdf220d5cb317b2e945a986fd85adebe29a76d411ad6d74ec31f
environment:
Expand All @@ -264,7 +264,7 @@ jobs:
# Miscellaneous tasks
documentation-checks:
docker:
- image: circleci/ruby:2.6
- image: circleci/ruby
environment:
<<: *common_env
steps:
Expand Down

0 comments on commit 78881a9

Please sign in to comment.