From cda621bb276f6531923f0ca88ef0d41d8530afca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Thu, 28 May 2026 13:51:43 +0200 Subject: [PATCH] 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. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29b6fd4be..de26932bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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.