From 99c41c25d6b2110f0730faee7e5af2cffb6a5255 Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Wed, 13 Aug 2025 11:24:29 -0500 Subject: [PATCH] Update GitHub Actions workflow to use latest Node.js version and streamline pnpm setup --- .github/workflows/publish.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e609b2e0..2e1a6133 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,17 +21,17 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Use Node.js 20 - uses: actions/setup-node@v4 - with: - node-version: 20 - registry-url: 'https://registry.npmjs.org' - cache: 'pnpm' - - name: Setup pnpm uses: pnpm/action-setup@v4 with: - version: 9 + version: latest + + - name: Use Node.js latest + uses: actions/setup-node@v4 + with: + node-version: latest + registry-url: 'https://registry.npmjs.org' + cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile