From 6e8a319cd96f1848416a1ac07d869f1ab055a437 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 11:52:43 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pull-requests.yml | 4 ++-- .github/workflows/push-main.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index f33c26de7..8f95e6ecb 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -26,14 +26,14 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache .NET SDK - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.dotnet key: ${{ runner.os }}-dotnet-sdk-${{ hashFiles('global.json') }} restore-keys: | ${{ runner.os }}-dotnet-sdk- - name: Cache NuGet packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('Directory.Packages.props', 'global.json', '.config/dotnet-tools.json') }} diff --git a/.github/workflows/push-main.yml b/.github/workflows/push-main.yml index 998690b46..040d2cb33 100644 --- a/.github/workflows/push-main.yml +++ b/.github/workflows/push-main.yml @@ -24,14 +24,14 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache .NET SDK - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.dotnet key: ${{ runner.os }}-dotnet-sdk-${{ hashFiles('global.json') }} restore-keys: | ${{ runner.os }}-dotnet-sdk- - name: Cache NuGet packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('Directory.Packages.props', 'global.json', '.config/dotnet-tools.json') }}