From d34989bda40a2c5cba37d4d3bf5fb8a0c3c6f814 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2026 01:04:33 +0000 Subject: [PATCH] chore(deps): bump pnpm/action-setup from 6.0.9 to 6.0.10 Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 6.0.9 to 6.0.10. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v6.0.9...v6.0.10) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: 6.0.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/backend-tests.yml | 2 +- .github/workflows/frontend-tests.yml | 2 +- .github/workflows/npmpublish.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index 5b433dc..df25132 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -30,7 +30,7 @@ jobs: name: Install Node.js with: node-version: 25 - - uses: pnpm/action-setup@v6.0.9 + - uses: pnpm/action-setup@v6.0.10 name: Install pnpm with: package_json_file: ./etherpad-lite/package.json diff --git a/.github/workflows/frontend-tests.yml b/.github/workflows/frontend-tests.yml index d9282c4..022be9f 100644 --- a/.github/workflows/frontend-tests.yml +++ b/.github/workflows/frontend-tests.yml @@ -20,7 +20,7 @@ jobs: name: Install Node.js with: node-version: 25 - - uses: pnpm/action-setup@v6.0.9 + - uses: pnpm/action-setup@v6.0.10 name: Install pnpm with: package_json_file: ./etherpad-lite/package.json diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 5752d38..e95b77c 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v7 with: repository: ether/etherpad-lite - - uses: pnpm/action-setup@v6.0.9 + - uses: pnpm/action-setup@v6.0.10 name: Install pnpm with: run_install: false @@ -73,7 +73,7 @@ jobs: # `pnpm version patch` bumps package.json, makes a commit, and creates # a `v` tag. Capture the new tag name from package.json # rather than parsing pnpm's output, which has historically varied. - # Bump the patch component directly with Node. pnpm/action-setup@v6.0.9 + # Bump the patch component directly with Node. pnpm/action-setup@v6.0.10 # sometimes installs pnpm 11 pre-releases even when version: 10.x is # requested (pnpm/action-setup#225); those pre-releases either skip # the git commit/tag or reject --no-git-tag-version as unknown.