Skip to content

Commit d889053

Browse files
authored
Merge pull request #1094 from grpc-ecosystem/java21-support
Add Java 21 compilation to CI
2 parents 4363260 + 5f1a7a5 commit d889053

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
java: ['17']
14+
java: ['17', '21']
1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@v4

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
java: ['17']
11+
java: ['17', '21']
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v4

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99
}
1010
ext {
11-
projectVersion = '3.1.0.RELEASE'
11+
projectVersion = '3.2.0-SNAPSHOT'
1212

1313
// https://github.com/grpc/grpc-java/releases
1414
grpcVersion = '1.63.0'

0 commit comments

Comments
 (0)