From f396b54e960138cafdbd1d7b8c36d689e55b99f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 18:34:45 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/ci.yml | 8 ++++---- .github/workflows/performance.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be583455..ec168a7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI # Action versions: # - actions/checkout@v4 # - actions/setup-dotnet@v4 -# - actions/cache@v4 +# - actions/cache@v6 # - actions/upload-artifact@v4 # Triggers: push (main/develop), pull_request, workflow_call (called by docker-build-publish) on: @@ -67,7 +67,7 @@ jobs: dotnet-version: '10.0.x' - name: Cache NuGet packages - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }} @@ -121,7 +121,7 @@ jobs: # Restore previous coverage state for retroactive drop detection - name: Restore coverage state - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: coverage-state.json key: coverage-state-${{ github.ref }}-${{ github.sha }} @@ -172,7 +172,7 @@ jobs: # Save coverage state for next run (only on push events to persist history) - name: Save coverage state if: github.event_name == 'push' && (success() || failure()) - uses: actions/cache/save@v4 + uses: actions/cache/save@v6 with: path: coverage-state.json key: coverage-state-${{ github.ref }}-${{ github.sha }} diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 23612e12..25bf7328 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -3,7 +3,7 @@ name: Performance Tests # Action versions: # - actions/checkout@v4 # - actions/setup-dotnet@v4 -# - actions/cache@v4 +# - actions/cache@v6 # - actions/upload-artifact@v4 on: # Scheduled: full load test suite weekly (Sunday 03:00 UTC) @@ -57,7 +57,7 @@ jobs: dotnet-version: '10.0.x' - name: Cache NuGet packages - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}