Skip to content

Commit f1dc1ad

Browse files
authored
Merge pull request #1196 from nschonni/actions-cache-2.1.3
chore: Upgrade actions/cache to v2.1.3
2 parents c104912 + 71b6ee7 commit f1dc1ad

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/allowed-actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// can be added it this list.
55

66
module.exports = [
7-
'actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16', //actions/cache@v2.1.2
7+
'actions/cache@0781355a23dac32fd3bac414512f4b903437991a', //actions/cache@v2.1.3
88
'actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f', //actions/checkout@v2.3.4
99
'actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9', //actions/script@v3.0.0
1010
'actions/labeler@5f867a63be70efff62b767459b009290364495eb', //actions/labeler@v2.2.0

.github/workflows/dry-run-sync-algolia-search-indices.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
node-version: 14.x
1717
- name: cache node modules
18-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
18+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
1919
with:
2020
path: ~/.npm
2121
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/js-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
echo "::set-output name=dir::$(npm config get cache)"
4343
4444
- name: Cache node modules
45-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
45+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
4646
with:
4747
path: ${{ steps.npm-cache.outputs.dir }}
4848
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/pa11y.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
echo "::set-output name=dir::$(npm config get cache)"
1717
1818
- name: Cache node modules
19-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
19+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
2020
with:
2121
path: ${{ steps.npm-cache.outputs.dir }}
2222
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/sync-algolia-search-indices.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: 14.x
2020
- name: cache node modules
21-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
21+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
2222
with:
2323
path: ~/.npm
2424
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/test-translations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "::set-output name=dir::$(npm config get cache)"
2828
2929
- name: Cache node modules
30-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
30+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
3131
with:
3232
path: ${{ steps.npm-cache.outputs.dir }}
3333
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -65,7 +65,7 @@ jobs:
6565
echo "::set-output name=dir::$(npm config get cache)"
6666
6767
- name: Cache node modules
68-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
68+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
6969
with:
7070
path: ${{ steps.npm-cache.outputs.dir }}
7171
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "::set-output name=dir::$(npm config get cache)"
3333
3434
- name: Cache node modules
35-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
35+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
3636
with:
3737
path: ${{ steps.npm-cache.outputs.dir }}
3838
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
echo "::set-output name=dir::$(npm config get cache)"
5454
5555
- name: Cache node modules
56-
uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
56+
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
5757
with:
5858
path: ${{ steps.npm-cache.outputs.dir }}
5959
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)