This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new f971f8ccc RATIS-2359. Use JDK 17 for CI checks (#1315)
f971f8ccc is described below
commit f971f8ccc4e75eefd6053cf0c038c653e964f6d6
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Fri Nov 14 08:52:16 2025 +0100
RATIS-2359. Use JDK 17 for CI checks (#1315)
---
.github/workflows/check.yaml | 4 ++--
.github/workflows/ci.yaml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml
index 1655d6014..81651c1fa 100644
--- a/.github/workflows/check.yaml
+++ b/.github/workflows/check.yaml
@@ -30,8 +30,8 @@ on:
# OPTIONAL (ordered alphabetically)
java-version:
type: string
- description: "Java version to set up (default: 8)"
- default: '8'
+ description: "Java version to set up (default: 17)"
+ default: '17'
required: false
needs-binary-tarball:
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 20704f5ea..6ef2b0c66 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -38,7 +38,7 @@ jobs:
- build
strategy:
matrix:
- java: [ 11, 17, 21 ]
+ java: [ 8, 11, 17, 21 ]
fail-fast: false
uses: ./.github/workflows/check.yaml
with: