Skip to content

Commit e7b1d7a

Browse files
committed
add Java 25 to testing matrix
1 parent 283f103 commit e7b1d7a

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
jre: [8, 11, 17, 21]
20+
jre: [8, 11, 17, 21, 25]
2121
fail-fast: false # Should swap to true if we grow a large matrix
2222

2323
steps:

buildSrc/src/main/java/io/grpc/gradle/CheckPackageLeakageTask.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
/** Verifies all class files within jar files are in a specified Java package. */
3333
public abstract class CheckPackageLeakageTask extends DefaultTask {
34+
@SuppressWarnings("this-escape")
3435
public CheckPackageLeakageTask() {
3536
// Fake output for UP-TO-DATE checking
3637
getOutputs().file(getProject().getLayout().getBuildDirectory().file("tmp/" + getName()));

buildSrc/src/main/java/io/grpc/gradle/RequireUpperBoundDepsMatchTask.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public abstract class RequireUpperBoundDepsMatchTask extends DefaultTask {
4646
private final String projectPath;
4747
private final String projectVersion;
4848

49+
@SuppressWarnings("this-escape")
4950
public RequireUpperBoundDepsMatchTask() {
5051
projectPath = getProject().getPath();
5152
projectVersion = getProject().getVersion().toString();

0 commit comments

Comments
 (0)