From c3e68dd80b7c8fcd0519a4641a999f7f207a1739 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 14:05:48 +0000 Subject: [PATCH] build(deps): 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/dotnetcore.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index e0f2d6a4..72496565 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -25,7 +25,7 @@ jobs: with: dotnet-version: "10.0.x" - name: Cache NuGet packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.nuget/packages @@ -35,7 +35,7 @@ jobs: restore-keys: | ${{ runner.os }}-nuget- - name: Cache .paket directory - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .paket key: ${{ runner.os }}-paket-${{ hashFiles('**/paket.lock') }}