From 40327d59d6b61c787ea8c28ad515b38ebb3d25a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:31:56 +0100 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 (#8001) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/backend-tests.yml | 8 ++++---- .github/workflows/build-and-deploy-docs.yml | 4 ++-- .github/workflows/docker.yml | 2 +- .github/workflows/downstream-smoke.yml | 2 +- .github/workflows/frontend-admin-tests.yml | 4 ++-- .github/workflows/frontend-tests.yml | 16 ++++++++-------- .github/workflows/handleRelease.yml | 2 +- .github/workflows/load-test.yml | 6 +++--- .github/workflows/perform-type-check.yml | 2 +- .github/workflows/rate-limit.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/releaseEtherpad.yml | 2 +- .../workflows/upgrade-from-latest-release.yml | 2 +- 13 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index d0183a1a9..225d27b47 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -33,7 +33,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} @@ -89,7 +89,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} @@ -169,7 +169,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} @@ -235,7 +235,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/build-and-deploy-docs.yml b/.github/workflows/build-and-deploy-docs.yml index 062ec72fd..f49cf2974 100644 --- a/.github/workflows/build-and-deploy-docs.yml +++ b/.github/workflows/build-and-deploy-docs.yml @@ -37,14 +37,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ~/.pnpm-store key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache vitepress build with: path: doc/.vitepress/cache diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5abe166aa..cca0feb45 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -42,7 +42,7 @@ jobs: tags: ${{ env.TEST_TAG }} cache-from: type=gha cache-to: type=gha,mode=max - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/downstream-smoke.yml b/.github/workflows/downstream-smoke.yml index 4b5ff372a..fc42cfe3e 100644 --- a/.github/workflows/downstream-smoke.yml +++ b/.github/workflows/downstream-smoke.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout core (PR) uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/frontend-admin-tests.yml b/.github/workflows/frontend-admin-tests.yml index f8995db07..5ff9dea29 100644 --- a/.github/workflows/frontend-admin-tests.yml +++ b/.github/workflows/frontend-admin-tests.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} @@ -48,7 +48,7 @@ jobs: name: Install all dependencies and symlink for ep_etherpad-lite run: pnpm i - name: Cache Playwright browsers - uses: actions/cache@v5 + uses: actions/cache@v6 id: playwright-cache with: path: ~/.cache/ms-playwright diff --git a/.github/workflows/frontend-tests.yml b/.github/workflows/frontend-tests.yml index 51ca2bfb6..0def07b51 100644 --- a/.github/workflows/frontend-tests.yml +++ b/.github/workflows/frontend-tests.yml @@ -21,14 +21,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache Playwright browsers with: path: ~/.cache/ms-playwright @@ -93,14 +93,14 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache Playwright browsers with: path: ~/.cache/ms-playwright @@ -169,14 +169,14 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache Playwright browsers with: path: ~/.cache/ms-playwright @@ -270,14 +270,14 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache Playwright browsers with: path: ~/.cache/ms-playwright diff --git a/.github/workflows/handleRelease.yml b/.github/workflows/handleRelease.yml index 782a3c898..03ca88667 100644 --- a/.github/workflows/handleRelease.yml +++ b/.github/workflows/handleRelease.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/load-test.yml b/.github/workflows/load-test.yml index e48ead25a..9b498416c 100644 --- a/.github/workflows/load-test.yml +++ b/.github/workflows/load-test.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} @@ -63,7 +63,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} @@ -126,7 +126,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/perform-type-check.yml b/.github/workflows/perform-type-check.yml index 8567eece2..fbed6df2c 100644 --- a/.github/workflows/perform-type-check.yml +++ b/.github/workflows/perform-type-check.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/rate-limit.yml b/.github/workflows/rate-limit.yml index 9205be08b..3cd791164 100644 --- a/.github/workflows/rate-limit.yml +++ b/.github/workflows/rate-limit.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v7 - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1ab77767..b0b697845 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: repository: ether/ether.github.com path: ether.github.com token: '${{ secrets.ETHER_RELEASE_TOKEN }}' - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/releaseEtherpad.yml b/.github/workflows/releaseEtherpad.yml index 4942b02ce..dd53cf9ae 100644 --- a/.github/workflows/releaseEtherpad.yml +++ b/.github/workflows/releaseEtherpad.yml @@ -54,7 +54,7 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Upgrade npm to >=11.5.1 (required for trusted publishing) run: npm install -g npm@latest - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }} diff --git a/.github/workflows/upgrade-from-latest-release.yml b/.github/workflows/upgrade-from-latest-release.yml index f9e3481ab..2cd8f83e3 100644 --- a/.github/workflows/upgrade-from-latest-release.yml +++ b/.github/workflows/upgrade-from-latest-release.yml @@ -38,7 +38,7 @@ jobs: - name: Check out latest release tag run: git checkout "$(git tag --list 'v*' --sort=-version:refname | head -n1)" - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Cache pnpm store with: path: ${{ env.PNPM_HOME }}