Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Feb 29, 2024
1 parent e08e0f9 commit 48d210c
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 @@ -19,13 +19,13 @@ jobs:
uses: actions/checkout@v3.6.0

- name: Restore APT cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.1
with:
path: /var/cache/apt
key: ${{ runner.os }}-apt

- name: Restore cached SPM dependencies
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.1
with:
path: .build
key: swiftpm-${{ runner.os }}-${{ inputs.swift-version }}-${{ hashFiles('Package.swift') }}
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@v3.3.1
uses: actions/cache@v4.0.1
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@v3.3.1
uses: actions/cache@v4.0.1
with:
path: |
.build/repositories
Expand Down

0 comments on commit 48d210c

Please sign in to comment.