Skip to content

Commit 9a911ef

Browse files
actions: bump actions/cache in the actions-dependencies group
Bumps the actions-dependencies 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-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f2e1fb0 commit 9a911ef

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/CI-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Cache PCRE
107107
id: cache-pcre
108-
uses: actions/cache@v4
108+
uses: actions/cache@v5
109109
with:
110110
path: |
111111
externals\pcre.h

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
persist-credentials: false
3030

3131
- name: Cache uncrustify
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
id: cache-uncrustify
3434
with:
3535
path: |

.github/workflows/scriptcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
key: ${{ github.workflow }}-${{ runner.os }}
3232

3333
- name: Cache Cppcheck
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: cppcheck
3737
key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }}
@@ -62,7 +62,7 @@ jobs:
6262

6363
# TODO: bailout on error
6464
- name: Restore Cppcheck
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: cppcheck
6868
key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }}

0 commit comments

Comments
 (0)