Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Build all classes
uses: gradle/gradle-build-action@v3
with:
Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Build the web-app-reporter
uses: gradle/gradle-build-action@v3
with:
Expand All @@ -60,7 +60,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Build all classes
uses: gradle/gradle-build-action@v3
with:
Expand All @@ -78,7 +78,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Run unit tests
uses: gradle/gradle-build-action@v3
with:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Run functional tests that do not require external tools
uses: gradle/gradle-build-action@v3
with:
Expand All @@ -151,7 +151,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Run functional tests that do require external tools
uses: gradle/gradle-build-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Check copyrights, license headers, and .gitattributes
uses: gradle/gradle-build-action@v3
with:
Expand All @@ -46,7 +46,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
- name: Check for Detekt Issues
uses: gradle/gradle-build-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jdk:
- openjdk11
- openjdk21

install:
# Exclude generation of docs artifacts to save build time.
Expand Down
2 changes: 1 addition & 1 deletion .versions
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DOTNET_VERSION=6.0
GO_DEP_VERSION=0.5.4
GO_VERSION=1.21.6
HASKELL_STACK_VERSION=2.13.1
JAVA_VERSION=17
JAVA_VERSION=21
LICENSEE_VERSION=9.15.3
NODEJS_VERSION=20.9.0
NPM_VERSION=10.1.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# License-Filename: LICENSE

# Set this to the Java version to use in the base image (and to build and run ORT with).
ARG JAVA_VERSION=17
ARG JAVA_VERSION=21
ARG UBUNTU_VERSION=jammy

# Use OpenJDK Eclipe Temurin Ubuntu LTS
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-legacy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
ARG CRT_FILES="*.crt"

# Set this to the Java version to use in the base image (and to build and run ORT with).
ARG JAVA_VERSION=17
ARG JAVA_VERSION=21

# Set this to the version ORT should report.
ARG ORT_VERSION="DOCKER-SNAPSHOT"
Expand Down