From da0dea1e94ee154bd09edc78b9853fa65ee73e81 Mon Sep 17 00:00:00 2001 From: Daniel Waterworth Date: Wed, 30 Sep 2020 14:33:22 +0100 Subject: [PATCH] FIX: Make bundler CI cache setup explicit (#10785) Instructions on how to set this up exist at: https://github.com/actions/cache/blob/master/examples.md#ruby---bundler The second step was omitted, but it did not seem to prevent caching for unknown reasons. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3fbf974976..90508e1b295 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,6 +91,7 @@ jobs: gem install bundler -v 2.1.4 --no-doc bundle config deployment 'true' bundle config without 'development' + bundle config path vendor/bundle - name: Bundler cache uses: actions/cache@v1