From 50137627111dc499ba7880709ca5d22c7b1d611b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 14:37:38 +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-dotnet.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-dotnet.yaml b/.github/workflows/build-dotnet.yaml index d15ec25..76c9f81 100644 --- a/.github/workflows/build-dotnet.yaml +++ b/.github/workflows/build-dotnet.yaml @@ -1,4 +1,4 @@ -name: Build .NET +name: Build .NET on: workflow_call: @@ -23,7 +23,7 @@ jobs: global-json-file: global.json - name: Restore cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e693117..206536b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -57,7 +57,7 @@ jobs: global-json-file: global.json - name: Restore cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}