Skip to content

Commit

Permalink
Update actions/cache action to v3 (#17)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Apr 19, 2023
1 parent b02fe51 commit cd6757b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Checkout
uses: actions/checkout@master
- name: Restore APT cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /var/cache/apt
key: ${{ runner.os }}-apt
- name: Restore cached SPM dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
.build/repositories
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Restore cached Homebrew dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/Library/Caches/Homebrew/assimp--*
~/Library/Caches/Homebrew/downloads/*--assimp-*
key: ${{ runner.os }}-brew-assimp-${{ hashFiles('.github/brew-formulae') }}
restore-keys: ${{ runner.os }}-brew-assimp-
- name: Restore cached SPM dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
.build/repositories
Expand Down

0 comments on commit cd6757b

Please sign in to comment.