From 478f201505949ae69b0eba5487ebff952b353a45 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 02:51:54 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d25daacdf..8d98c3b42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,7 @@ jobs: fetch-depth: '0' - name: Restore NuGet Cache id: restore-nuget-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: '${{ github.workspace }}/.nuget/packages' key: "${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/dotnet-tools.json') }}" @@ -110,7 +110,7 @@ jobs: dotnet nuke Restore --skip - name: Update NuGet Cache if: always() && steps.restore-nuget-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: "${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/dotnet-tools.json') }}" path: '${{ github.workspace }}/.nuget/packages'