From 76dec702cd43ce5683d8e0c985d62d7de7527e80 Mon Sep 17 00:00:00 2001 From: Cody Bennett Date: Wed, 30 Oct 2024 10:14:50 -0500 Subject: [PATCH] chore: upgrade other step --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6988edb8..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