From 611f592f6dcac21471ff8005cb69eaab905e1718 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 16:41:28 +0000 Subject: [PATCH] deps(actions): 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 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84b2da3..b377b75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: dotnet-version: ${{ matrix.dotnet-version }} - name: Cache NuGet packages - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ matrix.dotnet-version }}-${{ hashFiles('**/*.*proj') }} @@ -61,7 +61,7 @@ jobs: node-version: '22' - name: Cache npm - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.npm key: npm-${{ runner.os }}-${{ hashFiles('**/package.json') }} @@ -146,7 +146,7 @@ jobs: 10.x - name: Cache NuGet packages - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ hashFiles('**/*.*proj') }} @@ -158,7 +158,7 @@ jobs: node-version: '22' - name: Cache npm - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.npm key: npm-${{ runner.os }}-${{ hashFiles('**/package.json') }} @@ -173,7 +173,7 @@ jobs: fi - name: Cache Playwright browsers - uses: actions/cache@v4 + uses: actions/cache@v6 id: playwright-cache with: path: ~/.cache/ms-playwright @@ -230,7 +230,7 @@ jobs: 10.x - name: Cache NuGet packages - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ hashFiles('**/*.*proj') }}