Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions/cache action to v3.4.0 #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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@v3.4.0
with:
path: /var/cache/apt
key: ${{ runner.os }}-apt

- name: Restore cached SPM dependencies
uses: actions/cache@v3.3.1
uses: actions/cache@v3.4.0
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@v3.4.0
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@v3.4.0
with:
path: |
.build/repositories
Expand Down
Loading