Skip to content

Commit

Permalink
use java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
jimexist committed Oct 5, 2023
1 parent 2e153fa commit a8cf297
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
toolchain: stable
components: rustfmt, clippy

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

- name: Validate Gradle wrapper
Expand Down Expand Up @@ -66,10 +66,10 @@ jobs:
steps:
- uses: actions/checkout@v3

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

- name: Validate Gradle wrapper
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
toolchain: stable
components: rustfmt, clippy

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

- name: Validate Gradle wrapper
Expand Down Expand Up @@ -66,10 +66,10 @@ jobs:
steps:
- uses: actions/checkout@v3

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

- name: Validate Gradle wrapper
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ A Java binding to [Apache Arrow DataFusion][1]
## Status

This project is still work in progress, and currently it works with Arrow 9.0 and DataFusion 7.0 version.
It is build and verified in CI against Java 11 and 17. You may check out the docker run instructions
where Java 17 `jshell` is used to run interactively.
It is build and verified in CI against Java 11 and 21. You may check out the docker run instructions
where Java 21 `jshell` is used to run interactively.

## How to use in your code

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
languageVersion = JavaLanguageVersion.of(21)
}
}

Expand Down

0 comments on commit a8cf297

Please sign in to comment.