ci: bump pnpm to v11 in release workflow

The frontend uses pnpm 11 (packageManager field, v11 lockfile, and the
allowBuilds key in pnpm-workspace.yaml is a pnpm 10+ feature), but the
release_ui job's pnpm/action-setup was pinned to v9. v9 rejects the
workspace file with 'packages field missing or empty' before the
frontend build hook can run.
This commit is contained in:
Zoltán Papp
2026-05-28 13:51:43 +02:00
parent d57b30f8d5
commit cda621bb27

View File

@@ -357,7 +357,7 @@ jobs:
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 9
version: 11
- name: Install dependencies
run: sudo apt update && sudo apt install -y -q libgtk-4-dev libwebkitgtk-6.0-dev libsoup-3.0-dev libayatana-appindicator3-dev gcc-mingw-w64-x86-64
@@ -462,7 +462,7 @@ jobs:
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 9
version: 11
- name: Install wails3 CLI
# Version derived from go.mod so the binding generator always matches
# the wails runtime the binary links against.