Skip to content

Commit 30519a3

Browse files
authored
Update Github Actions to use JDK-24 (#18858)
Signed-off-by: Andriy Redko <drreta@gmail.com>
1 parent b0417f3 commit 30519a3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/assemble.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
java: [ 21, 23 ]
10+
java: [ 21, 24 ]
1111
os: [ubuntu-latest, windows-latest, macos-13, ubuntu-24.04-arm]
1212
steps:
1313
- uses: actions/checkout@v4

.github/workflows/precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
java: [ 21, 23 ]
10+
java: [ 21, 24 ]
1111
os: [ubuntu-latest, windows-latest, macos-latest, macos-13, ubuntu-24.04-arm]
1212
include:
1313
- java: 21

plugins/repository-hdfs/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ Set disabledIntegTestTaskNames = []
182182
// Temporarily disable xxxSecure tests for JDK-24 and above, the krb5 does not play well
183183
if (BuildParams.runtimeJavaVersion >= JavaVersion.VERSION_24) {
184184
disabledIntegTestTaskNames += ['integTestSecure', 'integTestSecureHa']
185+
testingConventions.enabled = false
185186
}
186187

187188
for (String integTestTaskName : ['integTestHa', 'integTestSecure', 'integTestSecureHa']) {

0 commit comments

Comments
 (0)