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

Commit 2ca3047

Browse files
chore(deps): bump actions/cache from v1 to v2.1.4
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>
1 parent 947a5d3 commit 2ca3047

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pre-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222

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

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

.github/workflows/tagged-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020

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

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

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424

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

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

0 commit comments

Comments
 (0)