From fa7ee7ce2162df0e198ca092a4591ff442908498 Mon Sep 17 00:00:00 2001 From: Jeppe Reinhold Date: Mon, 18 Mar 2024 12:14:48 +0100 Subject: [PATCH] Update Node version in GH Actions workflow --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index faf5005..56b148e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,15 +7,15 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Prepare repository run: git fetch --unshallow --tags - - name: Use Node.js 16.x - uses: actions/setup-node@v3 + - name: Use Node.js 18.x + uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 18.x - name: Install dependencies run: npm install --ignore-scripts