From bc8956a746ad360d812009a9e4076a0793f43a38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:23:16 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3089961..efb3e915 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: - name: Build run: dotnet build --no-restore - name: Save build artifacts - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: . key: ${{ env.CACHE_KEY }} @@ -56,7 +56,7 @@ jobs: with: dotnet-version: 8.0.x - name: Restore build artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: . key: ${{ env.CACHE_KEY }} @@ -83,7 +83,7 @@ jobs: with: dotnet-version: 8.0.x - name: Restore build artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: . key: ${{ env.CACHE_KEY }} @@ -109,7 +109,7 @@ jobs: with: dotnet-version: 8.0.x - name: Restore build artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: . key: ${{ env.CACHE_KEY }}