From 581ec80a8bd2214176c2306029893b5623623e3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 10:09:24 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/backend-tests.yml | 4 ++-- .github/workflows/npmpublish.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index 3ce2ded..d064300 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -16,13 +16,13 @@ jobs: steps: - name: Install etherpad core - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: ether/etherpad-lite path: ./etherpad - name: Checkout plugin repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: ./plugin - diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index af60e1d..e0e4d6f 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: ether/etherpad-lite path: etherpad-lite - run: mv etherpad-lite .. - - uses: actions/checkout@v4 + uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 -