Skip to content

Commit

Permalink
Merge pull request #23 from paulsengroup/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions/cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
robomics authored Feb 11, 2024
2 parents 7dd1ad3 + 3857600 commit db7da70
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 db7da70

Please sign in to comment.