Skip to content

Commit 5622d2f

Browse files
authored
Merge pull request #27 from 42devs/dependabot/github_actions/actions/cache-2.1.7
fix(deps): bump actions/cache from 2.1.4 to 2.1.7
2 parents f658c5c + 6cdb932 commit 5622d2f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: echo "::set-output name=dir::$(yarn cache dir)"
3333

3434
- name: Cache node_modules 📦
35-
uses: actions/cache@v2.1.4
35+
uses: actions/cache@v2.1.7
3636
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3737
with:
3838
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: echo "::set-output name=dir::$(yarn cache dir)"
3434

3535
- name: Cache node_modules 📦
36-
uses: actions/cache@v2.1.4
36+
uses: actions/cache@v2.1.7
3737
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3838
with:
3939
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo "::set-output name=dir::$(yarn cache dir)"
2222

2323
- name: Cache node_modules 📦
24-
uses: actions/cache@v2.1.4
24+
uses: actions/cache@v2.1.7
2525
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2626
with:
2727
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: echo "::set-output name=dir::$(yarn cache dir)"
1919

2020
- name: Cache node_modules 📦
21-
uses: actions/cache@v2.1.4
21+
uses: actions/cache@v2.1.7
2222
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2323
with:
2424
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

0 commit comments

Comments
 (0)