From 8c7bff006d22d466e64f119d140bcfe9c66f5b9b Mon Sep 17 00:00:00 2001 From: Niels Klomp Date: Wed, 10 Jan 2024 01:50:40 +0100 Subject: [PATCH] chore: update action to use node v18 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e9431ce4..63227555 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: install node v16 + - name: install node v18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: yarn install run: yarn install - name: yarn build