From 51499eadce9a57d3ff506e9487281ea43cbf2090 Mon Sep 17 00:00:00 2001 From: Connor Turland <1409121+Connoropolous@users.noreply.github.com> Date: Wed, 25 Oct 2023 16:13:55 -0700 Subject: [PATCH] try node 20 --- .github/workflows/dry-run.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dry-run.yml b/.github/workflows/dry-run.yml index db648150..39e64fa8 100644 --- a/.github/workflows/dry-run.yml +++ b/.github/workflows/dry-run.yml @@ -16,13 +16,16 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 20 - name: Windows only, install wget if: ${{ runner.os == 'Windows' }} run: | choco install wget --no-progress - name: Install nodejs dependencies run: | - npm install + npm ci shell: bash - name: setup for codesigning (macos only) if: ${{ runner.os == 'macOs' }}