From 649fa1e9325eed330877f6eee46b416328c146c5 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Fri, 15 May 2026 21:33:41 +0200 Subject: [PATCH] Fix installing pnpm in github actions The action is buggy and does not read the "packagerManager" field from the "package.json" despite saying so in its documentation --- .github/workflows/build_pull_request.yml | 1 + .github/workflows/build_push_master.yml | 1 + .github/workflows/release.yml | 1 + .github/workflows/update_i18n_languages.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/.github/workflows/build_pull_request.yml b/.github/workflows/build_pull_request.yml index 7bdae85c..6e00ffc86 100644 --- a/.github/workflows/build_pull_request.yml +++ b/.github/workflows/build_pull_request.yml @@ -16,6 +16,7 @@ jobs: - uses: pnpm/action-setup@v6 name: Install pnpm with: + version: 11.1.2 cache: true - name: Install modules diff --git a/.github/workflows/build_push_master.yml b/.github/workflows/build_push_master.yml index 73875ac1..c9cee7f1 100644 --- a/.github/workflows/build_push_master.yml +++ b/.github/workflows/build_push_master.yml @@ -32,6 +32,7 @@ jobs: - uses: pnpm/action-setup@v6 name: Install pnpm with: + version: 11.1.2 cache: true - name: Cache node_modules diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24e9bf42..d4710be3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,6 +37,7 @@ jobs: - uses: pnpm/action-setup@v6 name: Install pnpm with: + version: 11.1.2 cache: true - name: Cache node_modules diff --git a/.github/workflows/update_i18n_languages.yml b/.github/workflows/update_i18n_languages.yml index f95a905f..8053aefa 100644 --- a/.github/workflows/update_i18n_languages.yml +++ b/.github/workflows/update_i18n_languages.yml @@ -34,6 +34,7 @@ jobs: - uses: pnpm/action-setup@v6 name: Install pnpm with: + version: 11.1.2 cache: true - name: Cache node_modules