Skip to content

Commit 04ac0b5

Browse files
Update actions/cache action to v3.4.3
1 parent e08e0f9 commit 04ac0b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
uses: actions/checkout@v3.6.0
2020

2121
- name: Restore APT cache
22-
uses: actions/cache@v3.3.1
22+
uses: actions/cache@v3.4.3
2323
with:
2424
path: /var/cache/apt
2525
key: ${{ runner.os }}-apt
2626

2727
- name: Restore cached SPM dependencies
28-
uses: actions/cache@v3.3.1
28+
uses: actions/cache@v3.4.3
2929
with:
3030
path: .build
3131
key: swiftpm-${{ runner.os }}-${{ inputs.swift-version }}-${{ hashFiles('Package.swift') }}

.github/workflows/ci-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
- name: Select Xcode ${{ matrix.xcode }}
1919
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
2020
- name: Restore cached Homebrew dependencies
21-
uses: actions/cache@v3.3.1
21+
uses: actions/cache@v3.4.3
2222
with:
2323
path: |
2424
~/Library/Caches/Homebrew/assimp--*
2525
~/Library/Caches/Homebrew/downloads/*--assimp-*
2626
key: ${{ runner.os }}-brew-assimp-${{ hashFiles('.github/brew-formulae') }}
2727
restore-keys: ${{ runner.os }}-brew-assimp-
2828
- name: Restore cached SPM dependencies
29-
uses: actions/cache@v3.3.1
29+
uses: actions/cache@v3.4.3
3030
with:
3131
path: |
3232
.build/repositories

0 commit comments

Comments
 (0)