Skip to content

Commit

Permalink
Merge pull request #1671 from UMM-CSci-3601/update-ci-versions
Browse files Browse the repository at this point in the history
Update Node and OpenJDK versions in CI
  • Loading branch information
NicMcPhee authored Sep 17, 2024
2 parents fb0ea37 + 546c16e commit b61be18
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/client-angular.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
cache-dependency-path: ./client/package-lock.json

Expand All @@ -34,10 +34,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
cache-dependency-path: ./client/package-lock.json

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
cache-dependency-path: ./client/package-lock.json

Expand Down
4 changes: 2 additions & 2 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ plugins {
id 'checkstyle'
}

// Build and run the project with Java 17
// Build and run the project with Java 21
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
languageVersion = JavaLanguageVersion.of(21)
}
}

Expand Down

0 comments on commit b61be18

Please sign in to comment.