From 3c92b0fe757dc4b764e27bd83b5d4c8acfaea45f Mon Sep 17 00:00:00 2001 From: SirStendec Date: Tue, 17 Jun 2025 15:06:16 -0400 Subject: [PATCH] Update the NPM and PNPM version used by GitHub Actions to build the extension. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b66d8cb..4a9f5955 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,13 @@ jobs: - name: Uses PNPM uses: pnpm/action-setup@v4 with: - version: 8 + version: 10 run_install: false - - name: Uses Node.js 18.x + - name: Uses Node.js 22.x uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 22 cache: 'pnpm' - name: Install Dependencies