Skip to content

Commit

Permalink
Bump actions/cache from 2.1.5 to 2.1.6
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.5 to 2.1.6.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v2.1.5...v2.1.6)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 28, 2021
1 parent ad48553 commit 419ef1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
ruby-version: ${{ env.ruby }}
- name: Cache gems
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: vendor/bundle
key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }}
Expand All @@ -41,7 +41,7 @@ jobs:
with:
ruby-version: ${{ env.ruby }}
- name: Cache gems
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: vendor/bundle
key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }}
Expand All @@ -65,14 +65,14 @@ jobs:
with:
ruby-version: ${{ env.ruby }}
- name: Cache gems
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: vendor/bundle
key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
bundle-${{ env.os }}-${{ env.ruby }}-
- name: Cache node modules
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: node_modules
key: yarn-${{ env.os }}-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
with:
ruby-version: ${{ env.ruby }}
- name: Cache gems
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: vendor/bundle
key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -21,14 +21,14 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
- name: Cache gems
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: vendor/bundle
key: bundle-ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
bundle-ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}-
- name: Cache node modules
uses: actions/cache@v2.1.5
uses: actions/cache@v2.1.6
with:
path: node_modules
key: yarn-ubuntu-${{ matrix.ubuntu }}-${{ hashFiles('yarn.lock') }}
Expand Down

0 comments on commit 419ef1f

Please sign in to comment.