Skip to content

Commit 3397470

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] <[email protected]>
1 parent 3b24d39 commit 3397470

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
node-version: ${{ matrix.node-version }}
7070
cache: 'npm'
7171

72-
- uses: actions/cache@v4
72+
- uses: actions/cache@v5
7373
with:
7474
path: ${{ env.EM_CACHE_FOLDER }}
7575
key: example-em-cache-${{ runner.os }}-${{ matrix.node-version }}

.github/workflows/jest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'
2929

30-
- uses: actions/cache@v4
30+
- uses: actions/cache@v5
3131
with:
3232
path: ${{ env.EM_CACHE_FOLDER }}
3333
key: jest-em-cache-${{ runner.os }}-${{ matrix.node-version }}
@@ -65,7 +65,7 @@ jobs:
6565
node-version: ${{ env.NODE_LATEST_VERSION }}
6666
cache: 'npm'
6767

68-
- uses: actions/cache@v4
68+
- uses: actions/cache@v5
6969
with:
7070
path: ${{ env.EM_CACHE_FOLDER }}
7171
key: jest-em-cache-${{ runner.os }}-${{ env.NODE_LATEST_VERSION }}

0 commit comments

Comments
 (0)