Skip to content

Commit

Permalink
Upgrade CI to JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
joffrey-bion committed Jan 29, 2024
1 parent c6804a3 commit 63f24ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
jdk-version: [17]
jdk-version: [21]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
java-version: 21

# Docker is not installed on GitHub's MacOS hosted workers due to licensing issues
- name: Setup docker (missing on MacOS)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-gradlew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
java-version: 21

- name: Update Gradle wrapper
uses: gradle-update/update-gradle-wrapper-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-protocol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
java-version: 21

- name: Update protocol
uses: gradle/gradle-build-action@v2
Expand Down

0 comments on commit 63f24ca

Please sign in to comment.