Skip to content

Commit

Permalink
Github Actions: Update to actions/cache@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrossard authored and mathias-arm committed Aug 5, 2023
1 parent 8ec8d00 commit dd11a5a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
restore-keys: ${{ runner.os }}-${{ env.cache-name }}

- name: Cache Python modules
uses: actions/cache@v2
id: cache-python
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down Expand Up @@ -65,7 +66,7 @@ jobs:
- name: Cache CCache
id: ccache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .ccache
key: ${{ runner.os }}-ccache-${{ hashFiles('log.txt') }}
Expand Down

0 comments on commit dd11a5a

Please sign in to comment.