Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
chore(deps): bump actions/cache from v1 to v2.1.4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from v1 to v2.1.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...26968a0)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and marvinpinto committed Mar 23, 2021
1 parent b31b7f8 commit 951393e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:

- id: "yarn-cache"
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: "actions/cache@v1"
- uses: "actions/cache@v2.1.4"
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

- uses: "actions/cache@v1"
- uses: "actions/cache@v2.1.4"
with:
path: "node_modules"
key: ${{ runner.os }}-yarn-node-modules${{ hashFiles('**/yarn.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:

- id: "yarn-cache"
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: "actions/cache@v1"
- uses: "actions/cache@v2.1.4"
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

- uses: "actions/cache@v1"
- uses: "actions/cache@v2.1.4"
with:
path: "node_modules"
key: ${{ runner.os }}-yarn-node-modules${{ hashFiles('**/yarn.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:

- id: "yarn-cache"
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: "actions/cache@v1"
- uses: "actions/cache@v2.1.4"
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

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

0 comments on commit 951393e

Please sign in to comment.