File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
113113When using `.ruby-version`, replace `${{ matrix.ruby }}` with `${{ hashFiles('.ruby-version') }}`.
114114
115115This 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 ).
117117Make sure to include `use-ruby` in the `key` to avoid conflicting with previous caches.
118118
119119# # Limitations
You can’t perform that action at this time.
0 commit comments