Commit 71fd4fa0 authored by Takuya Noguchi's avatar Takuya Noguchi Committed by Marcel Amirault

Replace ruby:2.5 with ruby:3.0 in CI docs

parent 05def397
......@@ -92,19 +92,19 @@ These job keywords can be defined inside a `default:` section:
- [`tags`](#tags)
- [`timeout`](#timeout)
The following example sets the `ruby:2.5` image as the default for all jobs in the pipeline.
The `rspec 2.6` job does not use the default, because it overrides the default with
The following example sets the `ruby:3.0` image as the default for all jobs in the pipeline.
The `rspec 2.7` job does not use the default, because it overrides the default with
a job-specific `image:` section:
```yaml
default:
image: ruby:2.5
image: ruby:3.0
rspec:
script: bundle exec rspec
rspec 2.6:
image: ruby:2.6
rspec 2.7:
image: ruby:2.7
script: bundle exec rspec
```
......@@ -5088,13 +5088,14 @@ Use [`default:`](#custom-default-keyword-values) instead. For example:
```yaml
default:
image: ruby:2.5
image: ruby:3.0
services:
- docker:dind
cache:
paths: [vendor/]
before_script:
- bundle install --path vendor/
- bundle config set path vendor/bundle
- bundle install
after_script:
- rm -rf tmp/
```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment