Update Java version for compatibility tests in CI

This commit configures Java 20 for compatibility tests in our CI,
replacing Java 19.
This commit is contained in:
Brian Clozel
2023-03-23 15:47:06 +01:00
parent 24b359d519
commit d9776941bf
5 changed files with 13 additions and 13 deletions

View File

@@ -47,7 +47,7 @@ import static org.assertj.core.api.Assertions.assertThatThrownBy;
* @author Sam Brannen
* @since 5.2.4
*/
@DisabledOnJre(value= {JRE.JAVA_18, JRE.JAVA_19}, disabledReason = "BlockHound is not compatible with Java 18+")
@DisabledOnJre(value= {JRE.JAVA_18, JRE.JAVA_19, JRE.JAVA_20}, disabledReason = "BlockHound is not compatible with Java 18+")
class SpringCoreBlockHoundIntegrationTests {
@BeforeAll