Skip to content

Commit

Permalink
Update Node Versions (#888)
Browse files Browse the repository at this point in the history
  • Loading branch information
andxu282 authored Feb 15, 2024
1 parent 4d9b631 commit 580d477
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/track-users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-courses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 <[email protected]>
branch: update-courses/${{ github.event.inputs.semester }}
delete-branch: true
Expand Down

0 comments on commit 580d477

Please sign in to comment.