From 4b5955701763e5b97c010265036f878dc188e7d7 Mon Sep 17 00:00:00 2001 From: Rahul Ramesh <121226043+rahu1ramesh@users.noreply.github.com> Date: Tue, 26 Nov 2024 08:50:17 +0530 Subject: [PATCH] [Rahul] | Fix. Node - Runner Incompatibility (#109) * [Rahul] | Fix. Node - Runner Incompatability * [Rahul] | Fix. Bump Node Version 12.13.0 -> 14.2.0 * [Rahul] | Fix. Bump Node Version 14.2.0 -> 14.15.1 * [Rahul] | Fix. Switch Runner macos -> ubuntu * [Rahul] | Fix. Switch Runner macos-latest -> macos-13 * [Rahul] | Fix. Remove Branch Trigger * [Rahul] | Fix. Revert Branch Trigger Changes --- .github/workflows/npm-publish.yml | 8 ++++---- .github/workflows/validate-pr.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index f83b4472..58e1c76e 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -12,14 +12,14 @@ on: jobs: build: - runs-on: macos-latest + runs-on: macos-13 steps: - name: Checkout the code uses: actions/checkout@v3 - - name: Set up Node JS 10.19.0 - uses: actions/setup-node@v3 + - name: Set up Node JS v14.2.0 + uses: actions/setup-node@v4 with: - node-version: 12.13.0 + node-version: 14.2.0 registry-url: 'https://registry.npmjs.org' - run: yarn cache clean - name: Install dependencies diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml index ee864250..6acbcfe7 100644 --- a/.github/workflows/validate-pr.yml +++ b/.github/workflows/validate-pr.yml @@ -9,14 +9,14 @@ on: jobs: build: - runs-on: macos-latest + runs-on: macos-13 steps: - name: Checkout the code uses: actions/checkout@v3 - - name: Set up Node JS 10.19.0 - uses: actions/setup-node@v3 + - name: Set up Node JS v14.2.0 + uses: actions/setup-node@v4 with: - node-version: 12.13.0 + node-version: 14.2.0 registry-url: 'https://registry.npmjs.org' - run: yarn cache clean - name: Install dependencies