From e4960ad3bd1c251cb5d07dc01e2e6d150fe7b7f7 Mon Sep 17 00:00:00 2001 From: HarriPra <157723129+HarriPra@users.noreply.github.com> Date: Mon, 18 Mar 2024 17:16:14 +0000 Subject: [PATCH] adjust node running version --- .github/actions/repo-dispatch/action.yml | 2 +- .github/workflows/cross-repo-deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/repo-dispatch/action.yml b/.github/actions/repo-dispatch/action.yml index 60fead0d7..861bf29c8 100644 --- a/.github/actions/repo-dispatch/action.yml +++ b/.github/actions/repo-dispatch/action.yml @@ -17,7 +17,7 @@ inputs: required: false runs: - using: 'node12' + using: 'node20' #what is node 12? main: 'index.js' #unsure with what else to put here, need to research diff --git a/.github/workflows/cross-repo-deploy.yml b/.github/workflows/cross-repo-deploy.yml index 98bcb021e..1fdadcdb8 100644 --- a/.github/workflows/cross-repo-deploy.yml +++ b/.github/workflows/cross-repo-deploy.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v2 with: - node-version: '14' #maybe change this to make it dynamic later + node-version: '14' - name: Install dependancies run: yarn install