Skip to content

Commit eeef6b8

Browse files
authored
refs #12683 - updated GitHub action actions/cache to v4 (#6471)
1 parent abaf3f3 commit eeef6b8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: .github/workflows/CI-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100

101101
- name: Cache PCRE
102102
id: cache-pcre
103-
uses: actions/cache@v3
103+
uses: actions/cache@v4
104104
with:
105105
path: |
106106
externals\pcre.h

Diff for: .github/workflows/format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v3
2424

2525
- name: Cache uncrustify
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
id: cache-uncrustify
2828
with:
2929
path: |

Diff for: .github/workflows/release-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Cache PCRE
3939
id: cache-pcre
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: |
4343
externals\pcre.h

Diff for: .github/workflows/scriptcheck.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
key: ${{ github.workflow }}-${{ runner.os }}
3030

3131
- name: Cache Cppcheck
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: cppcheck
3535
key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }}
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v3
5959

6060
- name: Restore Cppcheck
61-
uses: actions/cache@v3
61+
uses: actions/cache@v4
6262
with:
6363
path: cppcheck
6464
key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }}

0 commit comments

Comments
 (0)