From 61a24a70db6018f8c22f9c037e0de3b310b03bee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 09:20:37 +0000 Subject: [PATCH 1/2] ci(deps): 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/build.yml | 8 ++++---- .github/workflows/canary.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ad4d82fd9d6..8101837fbdab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -121,7 +121,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: Store NX cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 # Only cache this per-PR to speed up CI. if: github.event_name == 'pull_request' with: @@ -206,7 +206,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | .nx/cache @@ -245,7 +245,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | .nx/cache @@ -968,7 +968,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | .nx/cache diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 414cd48d9245..b99e968835f2 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -39,7 +39,7 @@ jobs: with: node-version-file: 'package.json' - name: Check canary cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }} @@ -132,7 +132,7 @@ jobs: node-version-file: 'dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/package.json' - name: Restore canary cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }} From 101766fd0497158ed87ee8648ef7f65e8ac478d7 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Mon, 3 Aug 2026 11:58:45 +0200 Subject: [PATCH 2/2] ci(deps): Pin actions/cache to v6.1.0 everywhere Dependabot bumped only the 6 refs in .github/workflows and left the 4 in .github/actions on v5, since its github-actions updater does not scan composite action.yml files. Update those too so all 10 refs match. Pin the exact patch rather than floating v6: v6.0.0 fails the run when a cache save hits a read-only token, which v6.1.0 downgrades to a warning. That is the failure mode for forked-PR runs saving the playwright cache. Co-Authored-By: Claude Opus 5 (1M context) --- .github/actions/install-dependencies/action.yml | 2 +- .github/actions/install-playwright/action.yml | 4 ++-- .github/actions/restore-cache/action.yml | 2 +- .github/workflows/build.yml | 8 ++++---- .github/workflows/canary.yml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index a862cd355af2..91374c88208f 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -15,7 +15,7 @@ runs: shell: bash - name: Check dependency cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 id: cache_dependencies with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} diff --git a/.github/actions/install-playwright/action.yml b/.github/actions/install-playwright/action.yml index ec6ae171e925..0422128daff3 100644 --- a/.github/actions/install-playwright/action.yml +++ b/.github/actions/install-playwright/action.yml @@ -18,7 +18,7 @@ runs: working-directory: ${{ inputs.cwd }} - name: Restore cached playwright binaries - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 id: playwright-cache with: path: | @@ -43,7 +43,7 @@ runs: # Only store cache on develop branch - name: Store cached playwright binaries - uses: actions/cache/save@v5 + uses: actions/cache/save@v6.1.0 if: github.event_name == 'push' && github.ref == 'refs/heads/develop' with: path: | diff --git a/.github/actions/restore-cache/action.yml b/.github/actions/restore-cache/action.yml index 1d5126fbe952..ce5c2abd676e 100644 --- a/.github/actions/restore-cache/action.yml +++ b/.github/actions/restore-cache/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Check dependency cache id: dep-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6.1.0 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ inputs.dependency_cache_key }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8101837fbdab..80b921b818bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -121,7 +121,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: Store NX cache - uses: actions/cache/save@v6 + uses: actions/cache/save@v6.1.0 # Only cache this per-PR to speed up CI. if: github.event_name == 'pull_request' with: @@ -206,7 +206,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v6 + uses: actions/cache/restore@v6.1.0 with: path: | .nx/cache @@ -245,7 +245,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v6 + uses: actions/cache/restore@v6.1.0 with: path: | .nx/cache @@ -968,7 +968,7 @@ jobs: with: node-version-file: 'package.json' - name: Restore NX cache - uses: actions/cache/restore@v6 + uses: actions/cache/restore@v6.1.0 with: path: | .nx/cache diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index b99e968835f2..c20b80e9f71c 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -39,7 +39,7 @@ jobs: with: node-version-file: 'package.json' - name: Check canary cache - uses: actions/cache@v6 + uses: actions/cache@v6.1.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }} @@ -132,7 +132,7 @@ jobs: node-version-file: 'dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/package.json' - name: Restore canary cache - uses: actions/cache/restore@v6 + uses: actions/cache/restore@v6.1.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: canary-${{ env.HEAD_COMMIT }}