From 79552ee4e425fffba0dc1d5239ace3334880944c Mon Sep 17 00:00:00 2001 From: Gianni Ferullo Date: Fri, 1 Nov 2024 11:04:57 -0400 Subject: [PATCH] github actions on node v20 --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bc50896e..f790b859 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,12 +11,12 @@ jobs: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: giphy-web steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 18.x cache: 'yarn' - - run: yarn install --immutable + - run: yarn install --immutable - name: Build run: yarn run build - name: Lint and Test