From 363c0f96f37c849efcbc6fe710c72b59087113ec Mon Sep 17 00:00:00 2001 From: Cody Bennett Date: Wed, 30 Oct 2024 16:17:44 +0100 Subject: [PATCH] chore(CI): upgrade Node (#384) --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 629b998e..f10bbe22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,11 +15,11 @@ jobs: with: access_token: ${{ secrets.GITHUB_TOKEN }} - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '14.x' + node-version: '20.x' - name: Install deps run: yarn install - name: Check for regressions @@ -40,11 +40,11 @@ jobs: with: access_token: ${{ secrets.GITHUB_TOKEN }} - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '14.x' + node-version: '20.x' - name: Install deps # this runs a build script so there is no dedicated build run: yarn install