From 35498c572ae3aa6e878f0b7de92fcbd148ff3ce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Thu, 28 May 2026 13:57:30 +0200 Subject: [PATCH] ci: bump node to v22 in release workflow pnpm 11 requires Node.js >= 22.13 (uses node:sqlite, added in 22.5), but the release workflow still pinned Node 20. After bumping pnpm to v11 in the previous commit, the frontend build hook now fails with ERR_UNKNOWN_BUILTIN_MODULE 'node:sqlite' until Node also moves to 22. --- .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 de26932bb..207c171d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -352,7 +352,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' - name: Set up pnpm uses: pnpm/action-setup@v3 @@ -458,7 +458,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' - name: Set up pnpm uses: pnpm/action-setup@v3 with: