From 18f2794fe2dcde457be0dcc23507584234c4b597 Mon Sep 17 00:00:00 2001 From: DonOmalVindula Date: Fri, 10 Jan 2025 10:27:00 +0530 Subject: [PATCH 1/3] ci: stick pnpm version to 9.15.3 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d7094a2..06ca7fb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: strategy: matrix: node-version: [18.x] - pnpm-version: [8.15.7] + pnpm-version: [9.15.3] steps: - name: ⬇️ Checkout id: checkout From 105b128c6c8e6736a52c953316e8c9dc7ed8c750 Mon Sep 17 00:00:00 2001 From: DonOmalVindula Date: Fri, 10 Jan 2025 10:35:02 +0530 Subject: [PATCH 2/3] ci: stick pnpm version to latest --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06ca7fb1..ae015d6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,6 @@ jobs: strategy: matrix: node-version: [18.x] - pnpm-version: [9.15.3] steps: - name: ⬇️ Checkout id: checkout @@ -54,7 +53,7 @@ jobs: id: setup-pnpm uses: pnpm/action-setup@v2.1.0 with: - version: ${{ matrix.pnpm-version }} + version: latest run_install: false - name: 🎈 Get pnpm store directory From 31864974f353e49624647150a220104751bc7824 Mon Sep 17 00:00:00 2001 From: DonOmalVindula Date: Fri, 10 Jan 2025 10:58:45 +0530 Subject: [PATCH 3/3] fix(ci): address commit suggestions --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ae015d6f..30bc6815 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,7 @@ jobs: strategy: matrix: node-version: [18.x] + pnpm-version: [latest] steps: - name: ⬇️ Checkout id: checkout @@ -53,7 +54,7 @@ jobs: id: setup-pnpm uses: pnpm/action-setup@v2.1.0 with: - version: latest + version: ${{ matrix.pnpm-version }} run_install: false - name: 🎈 Get pnpm store directory