From 580d4776582b1e9dad1e96d9ac303961725b642e Mon Sep 17 00:00:00 2001 From: Andrew Xu <53061040+andxu282@users.noreply.github.com> Date: Thu, 15 Feb 2024 11:15:22 -0500 Subject: [PATCH] Update Node Versions (#888) --- .github/workflows/cd-production.yml | 2 +- .github/workflows/cd-staging.yml | 2 +- .github/workflows/ci-build.yml | 4 ++-- .github/workflows/ci-check.yml | 4 ++-- .github/workflows/track-users.yml | 2 +- .github/workflows/update-courses.yml | 8 ++++---- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cd-production.yml b/.github/workflows/cd-production.yml index 343597dba..d954c6911 100644 --- a/.github/workflows/cd-production.yml +++ b/.github/workflows/cd-production.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Install run: npm install diff --git a/.github/workflows/cd-staging.yml b/.github/workflows/cd-staging.yml index 5cea14881..cd368b6d5 100644 --- a/.github/workflows/cd-staging.yml +++ b/.github/workflows/cd-staging.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Install run: npm install diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ae2ae816f..48309025a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -9,7 +9,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Install run: npm install @@ -22,7 +22,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Install run: npm install diff --git a/.github/workflows/ci-check.yml b/.github/workflows/ci-check.yml index ff0f5245e..7c95a2257 100644 --- a/.github/workflows/ci-check.yml +++ b/.github/workflows/ci-check.yml @@ -11,7 +11,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Clean Install run: npm ci @@ -31,7 +31,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Clean Install run: npm ci diff --git a/.github/workflows/track-users.yml b/.github/workflows/track-users.yml index 909ed3859..a0acbbe0e 100644 --- a/.github/workflows/track-users.yml +++ b/.github/workflows/track-users.yml @@ -11,7 +11,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Clean Install run: npm ci diff --git a/.github/workflows/update-courses.yml b/.github/workflows/update-courses.yml index 30132f2bd..d0f4b820b 100644 --- a/.github/workflows/update-courses.yml +++ b/.github/workflows/update-courses.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Clean Install run: npm ci @@ -32,9 +32,9 @@ jobs: id: cpr uses: peter-evans/create-pull-request@v4 with: - title: "[Automated] Update Courses (${{ github.event.inputs.semester }})" - body: "Ran `npm run courses-gen` and `npm run req-gen`, as part of the update-courses workflow." - commit-message: "[Automated] Update Courses (${{ github.event.inputs.semester }})" + title: '[Automated] Update Courses (${{ github.event.inputs.semester }})' + body: 'Ran `npm run courses-gen` and `npm run req-gen`, as part of the update-courses workflow.' + commit-message: '[Automated] Update Courses (${{ github.event.inputs.semester }})' committer: Cornell DTI GitHub Bot branch: update-courses/${{ github.event.inputs.semester }} delete-branch: true