From 168da34792ecb6d984143a5e2a53bf4efd0d78ef Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Fri, 9 Aug 2024 13:41:12 -0400 Subject: [PATCH] Upgrade pnpm/action-setup in github actions --- .github/workflows/prerelease.yml | 5 +++-- .github/workflows/release.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 20a37f26be..ddc7da4ebf 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -21,9 +21,10 @@ jobs: with: fetch-depth: 0 - - uses: pnpm/action-setup@v2.4.0 + - name: Install pnpm + uses: pnpm/action-setup@v4 with: - version: 8 + run_install: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb0245fa11..ffcf3c62e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,9 +25,10 @@ jobs: with: fetch-depth: 0 - - uses: pnpm/action-setup@v2.4.0 + - name: Install pnpm + uses: pnpm/action-setup@v4 with: - version: 8 + run_install: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4