Browse Source
Merge pull request #70 from sparanoid/dependabot/github_actions/actions/cache-3
pull/71/head
sparanoid
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
.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') }} |
|
|
|