From 9785beb07479e1ae8fb527ab1d50e76c9f5f9213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Bjerke?= Date: Thu, 14 Mar 2024 20:01:41 +0100 Subject: [PATCH] ci: use higher node version (#32) * ci: semantic release dry run * ci: use higher node version --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0167750..1ddca59 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,9 @@ jobs: uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 + with: + node-version: '>=20.8.1' - name: Install dependencies run: npm ci