From 0225c7c6a5e36ef57c3c6677703cdc2fd7188e12 Mon Sep 17 00:00:00 2001 From: Ravi Lodhi Date: Thu, 7 Dec 2023 16:56:02 +0530 Subject: [PATCH] Updated: node version to 20 in the github workflows used for auto deployment. --- .github/workflows/common-firebase-hosting-merge.yml | 2 +- .github/workflows/common-firebase-hosting-release.yml | 2 +- .github/workflows/common-pull-request.yml | 2 +- .github/workflows/pull-request.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/common-firebase-hosting-merge.yml b/.github/workflows/common-firebase-hosting-merge.yml index 8b2d46a9..91c9a374 100644 --- a/.github/workflows/common-firebase-hosting-merge.yml +++ b/.github/workflows/common-firebase-hosting-merge.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - name: Install Dependencies run: npm install - name: Generate .env file diff --git a/.github/workflows/common-firebase-hosting-release.yml b/.github/workflows/common-firebase-hosting-release.yml index 23992961..ff5fb77f 100644 --- a/.github/workflows/common-firebase-hosting-release.yml +++ b/.github/workflows/common-firebase-hosting-release.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - name: Checkout to latest release tag run: | git checkout $(git describe --tags `git rev-list --tags --max-count=1`) diff --git a/.github/workflows/common-pull-request.yml b/.github/workflows/common-pull-request.yml index a9aa52a5..286e77ac 100644 --- a/.github/workflows/common-pull-request.yml +++ b/.github/workflows/common-pull-request.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 377a76aa..595f700e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v2