Browse Source

Merge pull request #70 from sparanoid/dependabot/github_actions/actions/cache-3

pull/71/head
sparanoid 3 years ago
committed by GitHub
parent
commit
f09e0429d2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/test.yml

4
.github/workflows/test.yml

@ -40,7 +40,7 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
- name: Set up cache key for gems
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-use-ruby-${{ hashFiles('**/Gemfile.lock') }}
@ -61,7 +61,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Set up cache key for node_modules
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

Loading…
Cancel
Save