Skip to content

Commit 8b87456

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a5c55af commit 8b87456

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
node-version: ${{ env.node_version }}
2525

2626
- name: Cache Node.js modules
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: .npm
3030
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -50,7 +50,7 @@ jobs:
5050
node-version: ${{ env.node_version }}
5151

5252
- name: Cache Node.js modules
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: .npm
5656
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
node-version: ${{ env.node_version }}
2626

2727
- name: Cache Node.js modules
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: .npm
3131
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -51,7 +51,7 @@ jobs:
5151
node-version: ${{ env.node_version }}
5252

5353
- name: Cache Node.js modules
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
path: .npm
5757
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)