Skip to content

Commit 3b5bfd5

Browse files
mosfet80wwmayer
authored andcommitted
fix deprecation warning
update actions/cache/save to v4 switch to node 20: fix deprecation warning actions/cache/restore to v4 fix deprecation wawing
1 parent 83ea7e4 commit 3b5bfd5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/actions/windows/getCcache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555
run: |
5656
mkdir -p ${{ inputs.ccachebindir }}
5757
- name: Get cached version
58-
uses: actions/cache/restore@v3
58+
uses: actions/cache/restore@v4
5959
id: getCached
6060
with:
6161
path: ${{ inputs.ccachebindir }}
@@ -72,7 +72,7 @@ runs:
7272
rm -rf ccachetemp
7373
- name: Save version to cache
7474
if: steps.getCached.outputs.cache-hit != 'true'
75-
uses: actions/cache/save@v3
75+
uses: actions/cache/save@v4
7676
with:
7777
path: ${{ inputs.ccachebindir }}
7878
key: ${{ steps.getCached.outputs.cache-primary-key }}

.github/workflows/actions/windows/getLibpack/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555
run: |
5656
mkdir -p ${{ inputs.libpackdir }}
5757
- name: Get cached version
58-
uses: actions/cache/restore@v3
58+
uses: actions/cache/restore@v4
5959
id: getCached
6060
with:
6161
path: ${{ inputs.libpackdir }}
@@ -70,7 +70,7 @@ runs:
7070
rm -rf libpacktemp
7171
- name: Save version to cache
7272
if: steps.getCached.outputs.cache-hit != 'true'
73-
uses: actions/cache/save@v3
73+
uses: actions/cache/save@v4
7474
with:
7575
path: ${{ inputs.libpackdir }}
7676
key: ${{ steps.getCached.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)