Skip to content

Commit 77bdc6d

Browse files
committed
ci: bump pinned pnpm version from 10 to 11
ether/etherpad-lite's package.json declares packageManager: pnpm@11.0.6. pnpm/action-setup@v6 errored with ERR_PNPM_BAD_PM_VERSION when version was pinned to 10 because the action saw the conflict with the core's packageManager field. Bumping the pin to 11 resolves the mismatch.
1 parent f4a8eef commit 77bdc6d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/backend-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: pnpm/action-setup@v6
3434
name: Install pnpm
3535
with:
36-
version: 10
36+
version: 11
3737
run_install: false
3838
- name: Get pnpm store directory
3939
shell: bash

.github/workflows/frontend-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: pnpm/action-setup@v6
2424
name: Install pnpm
2525
with:
26-
version: 10
26+
version: 11
2727
run_install: false
2828
- name: Get pnpm store directory
2929
shell: bash

.github/workflows/npmpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: pnpm/action-setup@v6
3535
name: Install pnpm
3636
with:
37-
version: 10
37+
version: 11
3838
run_install: false
3939
- name: Get pnpm store directory
4040
shell: bash

0 commit comments

Comments
 (0)