From 24d9d6e67f32f804b3de0ba83d3956d53fa6ebe9 Mon Sep 17 00:00:00 2001 From: Anjey Tsibylskij <130153594+atldays@users.noreply.github.com> Date: Thu, 9 Apr 2026 20:01:13 +0300 Subject: [PATCH] ci(workflows): pin npm version to 11.7.0 for consistency and debug output --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21409e3..faf12ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,9 @@ jobs: cache: 'npm' - name: Update npm - run: npm install -g npm@latest + run: | + npm install -g npm@11.7.0 + npm -v - name: Install dependencies run: npm ci