From 4bd157eb2872403c0248935aa56b93b710ca1ca2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 01:11:32 +0000 Subject: [PATCH] Bump actions/cache from 3 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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/_build-layered.yml | 2 +- .github/workflows/_build-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_build-layered.yml b/.github/workflows/_build-layered.yml index 2c9720c..adaeaa3 100644 --- a/.github/workflows/_build-layered.yml +++ b/.github/workflows/_build-layered.yml @@ -56,7 +56,7 @@ jobs: # https://github.com/actions/cache/blob/main/examples.md#c---nuget - name: Get any cached NuGet packages from the last run - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: '~/.nuget/packages' key: nugetpackages-${{ runner.os }}-${{ hashFiles('source/**/*.csproj') }} diff --git a/.github/workflows/_build-test.yml b/.github/workflows/_build-test.yml index 43811a7..3b00f04 100644 --- a/.github/workflows/_build-test.yml +++ b/.github/workflows/_build-test.yml @@ -71,7 +71,7 @@ jobs: # https://github.com/actions/cache/blob/main/examples.md#c---nuget - name: Get any cached NuGet packages from the last run - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: '~/.nuget/packages' key: nugetpackages-${{ runner.os }}-${{ hashFiles('source/**/*.csproj') }}