Skip to content

Commit

Permalink
github-actions(deps): update actions/cache requirement to v2.1.4
Browse files Browse the repository at this point in the history
Updates the requirements on [actions/cache](https://github.com/actions/cache) to permit the latest version.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](https://github.com/actions/cache/commits/26968a09c0ea4f3e233fdddbafd1166051a095f6)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and joel committed Mar 17, 2021
1 parent 7ba03e1 commit fb25eb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
ruby-version: 3.0.0
- name: Cache gems
uses: actions/cache@v1
uses: actions/cache@v2.1.4
with:
path: vendor/bundle
key: ${{ runner.os }}-linter-${{ hashFiles('**/Gemfile.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -35,7 +35,7 @@ jobs:
ruby-version: 3.0.0

- name: Cache gems
uses: actions/cache@v1
uses: actions/cache@v2.1.4
with:
path: vendor/bundle
key: ${{ runner.os }}-test-${{ hashFiles('**/Gemfile.lock') }}
Expand All @@ -55,7 +55,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache Js dependencies
uses: actions/cache@v2
uses: actions/cache@v2.1.4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -69,7 +69,7 @@ jobs:
node-version: 15.5.1

- name: Cache Node Modules
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit fb25eb3

Please sign in to comment.