From 8137829321a6c9234ce001ed7eacb5126ad5f3dc Mon Sep 17 00:00:00 2001 From: Scott Jacobsen Date: Tue, 5 May 2020 09:43:21 -0600 Subject: [PATCH] Use the new `deployment true` config setting --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 77ff191..131eb31 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,9 @@ You can cache the installed gems with these two steps: restore-keys: | bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}- - name: bundle install - run: bundle install --deployment --jobs 4 + run: | + bundle config deployment true + bundle install --jobs 4 ``` When using a single OS, replace `${{ matrix.os }}` with the OS.