From c11172be8d19f51d6e3a754f46398c76022e6886 Mon Sep 17 00:00:00 2001 From: Stef Louwers Date: Tue, 19 May 2026 11:25:33 +0200 Subject: [PATCH] chore: pin pnpm via packageManager field (PF-3335) --- .github/jsonnet/GIT_VERSION | 2 +- .github/jsonnet/pnpm.jsonnet | 7 ++----- package.json | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/jsonnet/GIT_VERSION b/.github/jsonnet/GIT_VERSION index ff477d68..91009a41 100644 --- a/.github/jsonnet/GIT_VERSION +++ b/.github/jsonnet/GIT_VERSION @@ -1 +1 @@ -1e5064bfee9299e657d1d478626dfb60036ea580 +85284ade969df3f45c01eb0a9c513267c0a60b81 diff --git a/.github/jsonnet/pnpm.jsonnet b/.github/jsonnet/pnpm.jsonnet index cbb0ca3f..632df9f4 100644 --- a/.github/jsonnet/pnpm.jsonnet +++ b/.github/jsonnet/pnpm.jsonnet @@ -10,20 +10,17 @@ local yarn = import 'yarn.jsonnet'; * * @param {array} [args=[]] - Additional command line arguments for pnpm install * @param {object} [with={}] - Additional configuration options - * @param {string} [version='10'] - PNPM version to use * @param {boolean} [prod=false] - Whether to install only production dependencies * @param {string} [storeDir=null] - Directory for pnpm store * @param {string} [ifClause=null] - Conditional expression to determine if step should run * @param {string} [workingDirectory=null] - Directory to run pnpm in * @returns {steps} - Array containing a single step object */ - install(args=[], with={}, version='10', prod=false, storeDir=null, ifClause=null, workingDirectory=null):: + install(args=[], with={}, prod=false, storeDir=null, ifClause=null, workingDirectory=null):: base.action( 'Install pnpm tool', 'pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320', // v5 - with= - { version: version } + - with, + with=with, ifClause=ifClause, ) + self.installPackages( diff --git a/package.json b/package.json index e2b1f722..00a18adf 100644 --- a/package.json +++ b/package.json @@ -41,5 +41,5 @@ "prettier --write" ] }, - "packageManager": "pnpm@10.11.0" + "packageManager": "pnpm@10.33.4" }