From ed26e6aadfd32e6ac5628c39a4976b465a19c874 Mon Sep 17 00:00:00 2001 From: Tomi Hautakoski Date: Mon, 12 Feb 2024 13:51:39 +0200 Subject: [PATCH] Use Node20 for building --- .github/workflows/publish.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 684557e..3dd280d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -9,13 +9,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.release.tag_name }} - - name: Use node.js 16.x - uses: actions/setup-node@v3 + - name: Use node.js 20.x + uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 20 - name: NPM Install run: npm ci - name: Check Format