Skip to content

Commit

Permalink
Update action/cache
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Feb 1, 2024
1 parent 5306fec commit aa54f72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/load_conan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ runs:
- name: Restore Cache
id: restore-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
~/.conan/data
key: ${{ inputs.key_prefix }}-${{ hashFiles(steps.hash-key-primary.outputs.key, steps.hash-key-3rd.outputs.keys) }}
fail-on-cache-miss: ${{ inputs.fail_on_cache_miss }}

- name: Restore Testing Cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
~/.conan/data
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/store_conan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
rm -rf ~/.conan/data/*/*/*/*/source
- name: Save Cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: |
~/.conan/data
Expand Down

0 comments on commit aa54f72

Please sign in to comment.