Skip to content

Commit 40b2b84

Browse files
(build deps): Bump the actions group with 1 update
Bumps the actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4dfde61 commit 40b2b84

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/_prepare.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
-
1818
name: Cache cake frosting
1919
id: cache-cake
20-
uses: actions/cache@v3
20+
uses: actions/cache@v4
2121
with:
2222
path: run
2323
key: run-${{ runner.os }}-${{ hashFiles('./build/**') }}
2424
- name: Use cached tools
2525
id: cache-tools
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: tools
2929
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
-
6262
name: Cache cake frosting
6363
id: cache-cake
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: run
6767
key: run-${{ runner.os }}-${{ hashFiles('./build/**') }}

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
-
4949
name: Cache cake frosting
5050
id: cache-cake
51-
uses: actions/cache@v3
51+
uses: actions/cache@v4
5252
with:
5353
path: run
5454
key: run-${{ runner.os }}-${{ hashFiles('./build/**') }}
5555
-
5656
name: Use cached tools
5757
id: cache-tools
58-
uses: actions/cache@v3
58+
uses: actions/cache@v4
5959
with:
6060
path: tools
6161
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
@@ -69,7 +69,7 @@ jobs:
6969
-
7070
name: Cache Node Modules
7171
id: cache-node
72-
uses: actions/cache@v3
72+
uses: actions/cache@v4
7373
with:
7474
path: ${{ steps.cache-node-dir.outputs.dir }}
7575
key: node-${{ runner.os }}-${{ hashFiles('./package-lock.json') }}

0 commit comments

Comments
 (0)