Skip to content

Commit f8c1a88

Browse files
dependabot[bot]arturcic
authored andcommitted
(build deps): Bump actions/cache from 4 to 5 in the actions group
Bumps the actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cd0db02 commit f8c1a88

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
@@ -28,13 +28,13 @@ jobs:
2828
-
2929
name: Cache cake frosting
3030
id: cache-cake
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: run
3434
key: run-${{ runner.os }}-${{ hashFiles('./build/**') }}
3535
- name: Use cached tools
3636
id: cache-tools
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
with:
3939
path: tools
4040
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
@@ -62,7 +62,7 @@ jobs:
6262
-
6363
name: Cache cake frosting
6464
id: cache-cake
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: run
6868
key: run-${{ runner.os }}-${{ hashFiles('./build/**') }}

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
-
4545
name: Cache cake frosting
4646
id: cache-cake
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: run
5050
key: run-${{ runner.os }}-${{ hashFiles('./build/**') }}
5151
-
5252
name: Use cached tools
5353
id: cache-tools
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
path: tools
5757
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
@@ -65,7 +65,7 @@ jobs:
6565
-
6666
name: Cache Node Modules
6767
id: cache-node
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: ${{ steps.cache-node-dir.outputs.dir }}
7171
key: node-${{ runner.os }}-${{ hashFiles('./package-lock.json') }}

0 commit comments

Comments
 (0)