From 79a88cbb3d0c53366d9f1edc832e8ae303f0f580 Mon Sep 17 00:00:00 2001 From: James Cook <47297250+jamesatjaminit@users.noreply.github.com> Date: Wed, 29 Nov 2023 00:05:35 +0000 Subject: [PATCH] chore: update github action node version --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 531efcf..c351d06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> $GITHUB_OUTPUT - uses: actions/setup-node@v3 with: - node-version: "18" + node-version: "20" registry-url: 'https://registry.npmjs.org' - uses: pnpm/action-setup@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5136aad..cb4e8f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: deno: ["1.x"] - node: ["18", "20"] + node: ["20", "21"] name: Test Node on Version ${{ matrix.node }} steps: - name: Checkout Repo