Skip to content

Commit 5b7b3b5

Browse files
chore(deps): bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a170247 commit 5b7b3b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
- name: Restore cache
4242
if: runner.os == 'Windows' && contains(inputs.compiler, 'intel')
4343
id: cache
44-
uses: actions/cache/restore@v3
44+
uses: actions/cache/restore@v4
4545
with:
4646
path: ${{ env.ONEAPI_ROOT }}
4747
key: ${{ runner.os }}-${{ inputs.compiler }}-${{ inputs.version || 'latest' }}-${{ steps.get-date.outputs.date }}
@@ -85,7 +85,7 @@ runs:
8585
# save oneAPI cache and activate environment
8686
- name: Save cache
8787
if: runner.os == 'Windows' && contains(inputs.compiler, 'intel') && steps.cache.outputs.cache-hit != 'true'
88-
uses: actions/cache/save@v3
88+
uses: actions/cache/save@v4
8989
with:
9090
path: ${{ env.ONEAPI_ROOT }}
9191
key: ${{ runner.os }}-${{ inputs.compiler }}-${{ inputs.version || 'latest' }}-${{ steps.get-date.outputs.date }}

0 commit comments

Comments
 (0)