mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-17 16:47:05 +00:00
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
b45f60e20a
commit
40327d59d6
13 changed files with 27 additions and 27 deletions
8
.github/workflows/backend-tests.yml
vendored
8
.github/workflows/backend-tests.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
4
.github/workflows/build-and-deploy-docs.yml
vendored
4
.github/workflows/build-and-deploy-docs.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
2
.github/workflows/downstream-smoke.yml
vendored
2
.github/workflows/downstream-smoke.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
4
.github/workflows/frontend-admin-tests.yml
vendored
4
.github/workflows/frontend-admin-tests.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
16
.github/workflows/frontend-tests.yml
vendored
16
.github/workflows/frontend-tests.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/handleRelease.yml
vendored
2
.github/workflows/handleRelease.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
6
.github/workflows/load-test.yml
vendored
6
.github/workflows/load-test.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
2
.github/workflows/perform-type-check.yml
vendored
2
.github/workflows/perform-type-check.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
2
.github/workflows/rate-limit.yml
vendored
2
.github/workflows/rate-limit.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
2
.github/workflows/releaseEtherpad.yml
vendored
2
.github/workflows/releaseEtherpad.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue