Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 19, 2024
1 parent af447a4 commit 79e999b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake_full_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Cache IPP (Windows)
if: runner.os == 'Windows'
id: cache-ipp
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: ipp-v1
path: C:\Program Files (x86)\Intel\oneAPI\ipp
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Save IPP cache even on job fail
if: runner.os == 'Windows' && (steps.cache-ipp.outputs.cache-hit != 'true')
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: C:\Program Files (x86)\Intel\oneAPI\ipp
key: ipp-v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmake_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Cache IPP (Windows)
if: runner.os == 'Windows'
id: cache-ipp
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: ipp-v1
path: C:\Program Files (x86)\Intel\oneAPI\ipp
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Save IPP cache even on job fail
if: runner.os == 'Windows' && (steps.cache-ipp.outputs.cache-hit != 'true')
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: C:\Program Files (x86)\Intel\oneAPI\ipp
key: ipp-v1
Expand Down

0 comments on commit 79e999b

Please sign in to comment.