-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update actions/cache action to v4.2.0
- Loading branch information
1 parent
df30583
commit 4bfd71c
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,13 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: APT cache | ||
uses: actions/cache@v4.1.1 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: /var/cache/apt | ||
key: ${{ runner.os }}-apt | ||
|
||
- name: Restore cached SPM dependencies | ||
uses: actions/cache@v4.1.1 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: .build | ||
key: swiftpm-${{ runner.os }}-${{ inputs.swift-version }}-${{ hashFiles('Package.swift') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Cache vcpkg | ||
uses: actions/cache@v4.1.1 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
key: windows-x64-vcpkg | ||
path: C:\vcpkg\installed\x64-windows | ||
|