Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 17, 2024
1 parent 7dd1ad3 commit 3857600
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Restore Conan cache
id: cache-conan
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
key: conan-${{ steps.cache-key.outputs.conan-key }}
path: ${{ env.CONAN_HOME }}
Expand All @@ -84,7 +84,7 @@ jobs:
run: pip install --verbose '.[test]'

- name: Save Conan cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: steps.cache-conan.outputs.cache-hit != 'true'
with:
key: conan-${{ steps.cache-key.outputs.conan-key }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Restore Conan cache
id: cache-conan
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
key: ${{ steps.cache-key.outputs.conan-key }}
path: ${{ env.CONAN_HOME }}
Expand All @@ -135,7 +135,7 @@ jobs:
run: pip wheel . -vv --no-deps

- name: Save Conan cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: steps.cache-conan.outputs.cache-hit != 'true'
with:
key: ${{ steps.cache-key.outputs.conan-key }}
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
- name: Restore Conan cache
id: cache-conan
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
key: ${{ steps.cache-key.outputs.conan-key }}
path: ${{ env.CONAN_HOME }}
Expand All @@ -198,7 +198,7 @@ jobs:
run: pip wheel . -vv --no-deps

- name: Save Conan cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: steps.cache-conan.outputs.cache-hit != 'true'
with:
key: ${{ steps.cache-key.outputs.conan-key }}
Expand Down

0 comments on commit 3857600

Please sign in to comment.