From b5563c25bcbc8e28817148a33a5e2ac10c785f4b Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Fri, 15 Dec 2023 14:02:59 -0500 Subject: [PATCH] fix: actions/setup-node requires the lts codename --- .github/workflows/deploy.yaml | 3 ++- .github/workflows/review.yaml | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c635c6b..8c623f1 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -7,6 +7,7 @@ on: jobs: deploy: + name: Deploy Manifests runs-on: ubuntu-latest steps: - name: Checkout Repository @@ -15,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 'lts' + node-version: 'lts/Iron' - name: Setup PNPM uses: pnpm/action-setup@v2 diff --git a/.github/workflows/review.yaml b/.github/workflows/review.yaml index e5aea75..82f804a 100644 --- a/.github/workflows/review.yaml +++ b/.github/workflows/review.yaml @@ -4,7 +4,8 @@ on: pull_request: jobs: - deploy: + build: + name: Build Manifests runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -15,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 'lts' + node-version: 'lts/Iron' - name: Setup PNPM uses: pnpm/action-setup@v2