Browse Source

Merge pull request #3059 from SixLabors/dependabot/github_actions/actions/cache-5

Bump actions/cache from 4 to 5
pull/3066/head
James Jackson-South 3 months ago
committed by GitHub
parent
commit
10f8b0f369
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      .github/workflows/build-and-test.yml
  2. 4
      .github/workflows/code-coverage.yml

8
.github/workflows/build-and-test.yml

@ -49,7 +49,7 @@ jobs:
run: echo "lfs_key=$LFS_KEY" >> "$GITHUB_OUTPUT"
- name: Git Setup LFS Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .git/lfs
key: ${{ steps.expose-key.outputs.lfs_key }}
@ -144,7 +144,7 @@ jobs:
# Use the warmed key from WarmLFS. Do not recompute or recreate .lfs-assets-id here.
- name: Git Setup LFS Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .git/lfs
key: ${{ needs.WarmLFS.outputs.lfs_key }}
@ -157,7 +157,7 @@ jobs:
uses: NuGet/setup-nuget@v2
- name: NuGet Setup Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: nuget-cache
with:
path: ~/.nuget
@ -236,7 +236,7 @@ jobs:
uses: NuGet/setup-nuget@v2
- name: NuGet Setup Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: nuget-cache
with:
path: ~/.nuget

4
.github/workflows/code-coverage.yml

@ -46,7 +46,7 @@ jobs:
run: git lfs ls-files -l | awk '{print $1}' | sort > .lfs-assets-id
- name: Git Setup LFS Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: lfs-cache
with:
path: .git/lfs
@ -59,7 +59,7 @@ jobs:
uses: NuGet/setup-nuget@v2
- name: NuGet Setup Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: nuget-cache
with:
path: ~/.nuget

Loading…
Cancel
Save