Skip to content

Commit 13fdc73

Browse files
committed
Fix checkCompositesValidity
Has been failing since "June 12, 2024" but went unnoticed as it was sending mails to Sravan only. Problem was it tried to run with Java 11 but now Java 21 and during the whole period Java 17 was needed.
1 parent 9441b81 commit 13fdc73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

JenkinsJobs/Releng/checkCompositesValidity.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ job('Releng/checkCompositesValidity'){
66
daysToKeep(15)
77
}
88

9-
jdk('adoptopenjdk-hotspot-jdk11-latest')
9+
jdk('temurin-jdk21-latest')
1010

1111
label('basic')
1212

@@ -31,7 +31,7 @@ job('Releng/checkCompositesValidity'){
3131

3232
publishers {
3333
extendedEmail {
34-
recipientList("[email protected]")
34+
recipientList("[email protected]")
3535
}
3636
}
3737

0 commit comments

Comments
 (0)