Skip to content

Commit c870134

Browse files
authored
Merge pull request #209 from adrienne-deriv/update-cache-actions
Adrienne / Update cache action to use latest version
2 parents 4965df8 + 55fcc91 commit c870134

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/invalidate_master_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: save_cache
7-
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2
7+
uses: actions/cache/save@v4
88
with:
99
path: ./node_modules
1010
key: ${{ runner.os }}-node_modules-${{ hashFiles('./package-lock.json') }}

.github/actions/npm_install_from_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- name: Cache node modules
77
id: cache-nodemodules
8-
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2
8+
uses: actions/cache/restore@v4
99
with:
1010
path: node_modules
1111
key: ${{ runner.os }}-node_modules-${{ hashFiles('./package-lock.json') }}

0 commit comments

Comments
 (0)