Skip to content

Commit 9ba3fef

Browse files
authored
Update precommit and assemble to use JDK 25 (#19697)
Signed-off-by: Andrew Ross <andrross@amazon.com>
1 parent 2b40576 commit 9ba3fef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/assemble.yml

Lines changed: 2 additions & 2 deletions
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, 24 ]
10+
java: [ 21, 25 ]
1111
os: [ubuntu-latest, windows-latest, macos-13, ubuntu-24.04-arm]
1212
steps:
1313
- uses: actions/checkout@v5
@@ -33,7 +33,7 @@ jobs:
3333
shell: bash
3434
if: runner.os != 'macos'
3535
run: |
36-
./gradlew assemble --parallel --no-build-cache -PDISABLE_BUILD_CACHE
36+
./gradlew assemble --parallel --no-build-cache -PDISABLE_BUILD_CACHE
3737
- name: Run Gradle (assemble)
3838
if: runner.os == 'macos' && steps.setup_docker.outcome == 'success'
3939
run: |

.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, 24 ]
10+
java: [ 21, 25 ]
1111
os: [ubuntu-latest, windows-latest, macos-latest, macos-13, ubuntu-24.04-arm]
1212
include:
1313
- java: 21

0 commit comments

Comments
 (0)