From 081dd124e6f11d3bcccb07961c66636a554f3596 Mon Sep 17 00:00:00 2001 From: Parinita Mulak Date: Tue, 5 Nov 2024 18:04:46 -0800 Subject: [PATCH] feat: fix pnpm version in publish action (#650) --- .github/workflows/publish-to-npm.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-to-npm.yml b/.github/workflows/publish-to-npm.yml index 5d86a2bf5..138bbfbbe 100644 --- a/.github/workflows/publish-to-npm.yml +++ b/.github/workflows/publish-to-npm.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: false @@ -20,9 +20,9 @@ jobs: with: node-version: 20 - name: Setup PNPM - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 8 + version: 9 - name: Install dependencies run: pnpm install - name: Install semantic-release extra plugins