summary refs log tree commit
diff options
context:
space:
mode:
authorJosef Šimánek <josef.simanek@gmail.com>2022-04-14 00:21:55 +0200
committerGitHub <noreply@github.com>2022-04-14 10:21:55 +1200
commit7849def2962ebc1f551c7bb6ad88c697c1740715 (patch)
tree524f56a55fe754603e40449947e3f4c1bc6730f7
parentf015875071b44e63b626490055858d6c9c179a7a (diff)
downloadrack-7849def2962ebc1f551c7bb6ad88c697c1740715.tar.gz
Use setup-ruby action bundler caching ability on CI. (#1871)
-rw-r--r--.github/workflows/development.yml8
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
index 141a050f..98f975cd 100644
--- a/.github/workflows/development.yml
+++ b/.github/workflows/development.yml
@@ -16,13 +16,7 @@ jobs:
     - uses: ruby/setup-ruby@v1
       with:
         ruby-version: ${{matrix.ruby}}
-
-    - uses: actions/cache@v1
-      with:
-        path: vendor/bundle
-        key: bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-${{hashFiles('**/Gemfile')}}
-        restore-keys: |
-          bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-
+        bundler-cache: true
 
     - name: Installing packages (ubuntu)
       if: matrix.os == 'ubuntu-latest'