Skip to content

Commit 5dd4509

Browse files
committed
Fix link to example
1 parent 3551d3f commit 5dd4509

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ You can cache the installed gems with these two steps:
103103
key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
104104
restore-keys: |
105105
bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
106-
- name: Bundle install
106+
- name: bundle install
107107
run: |
108108
bundle config path vendor/bundle
109109
bundle install --jobs 4 --retry 3
@@ -113,7 +113,7 @@ When using a single job with a Ruby version, replace `${{ matrix.ruby }}` with t
113113
When using `.ruby-version`, replace `${{ matrix.ruby }}` with `${{ hashFiles('.ruby-version') }}`.
114114

115115
This uses the [cache action](https://github.com/actions/cache).
116-
The code above is a more complete version of the [Ruby - Gem example](https://github.com/actions/cache/blob/master/examples.md#ruby---gem).
116+
The code above is a more complete version of the [Ruby - Bundler example](https://github.com/actions/cache/blob/master/examples.md#ruby---bundler).
117117
Make sure to include `use-ruby` in the `key` to avoid conflicting with previous caches.
118118

119119
## Limitations

0 commit comments

Comments
 (0)