Skip to content

Commit 82749ad

Browse files
build(deps): bump actions/cache from 4 to 5 (#696)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 47adf9a commit 82749ad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Cache Node modules
2727
id: cache-node-modules
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: node_modules
3131
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -35,7 +35,7 @@ jobs:
3535
run: npm ci
3636

3737
- name: Cache setup
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ./*
4141
key: setup-${{ github.sha }}
@@ -48,7 +48,7 @@ jobs:
4848
command: [lint, test -- --no-watch --no-progress --browsers=ChromeHeadless, build]
4949
steps:
5050
- name: Restore setup
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ./*
5454
key: setup-${{ github.sha }}

0 commit comments

Comments
 (0)