Skip to content

Commit 54ff32d

Browse files
build(deps): bump actions/cache from 4 to 5 (#2103)
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> Co-authored-by: Robert Anderson <randerson@duckduckgo.com>
1 parent e765b88 commit 54ff32d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-node@v6
2020
with:
2121
node-version-file: '.nvmrc'
22-
- uses: actions/cache@v4
22+
- uses: actions/cache@v5
2323
with:
2424
path: ~/.npm
2525
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/snapshots-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-node@v6
3333
with:
3434
node-version-file: '.nvmrc'
35-
- uses: actions/cache@v4
35+
- uses: actions/cache@v5
3636
with:
3737
path: |
3838
~/.npm

.github/workflows/snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-node@v6
2626
with:
2727
node-version-file: '.nvmrc'
28-
- uses: actions/cache@v4
28+
- uses: actions/cache@v5
2929
with:
3030
path: |
3131
~/.npm

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-node@v6
2626
with:
2727
node-version-file: '.nvmrc'
28-
- uses: actions/cache@v4
28+
- uses: actions/cache@v5
2929
with:
3030
path: ~/.npm
3131
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/setup-node@v6
4848
with:
4949
node-version-file: '.nvmrc'
50-
- uses: actions/cache@v4
50+
- uses: actions/cache@v5
5151
with:
5252
path: ~/.npm
5353
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -59,7 +59,7 @@ jobs:
5959
npm run build
6060
- name: Cache docs output
6161
id: docs-output
62-
uses: actions/cache@v4
62+
uses: actions/cache@v5
6363
with:
6464
path: docs
6565
key: docs-output-${{ github.run_id }}
@@ -96,7 +96,7 @@ jobs:
9696
node-version-file: '.nvmrc'
9797
- name: Cache build outputs
9898
id: docs-output
99-
uses: actions/cache@v4
99+
uses: actions/cache@v5
100100
with:
101101
path: docs
102102
key: docs-output-${{ github.run_id }}

0 commit comments

Comments
 (0)