Skip to content

Commit dcd1eb5

Browse files
committed
Upgrade CI to JDK 25
1 parent 454bbaf commit dcd1eb5

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

.github/workflows/ci-4.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- os: ubuntu-latest
1111
jdk: 8
1212
- os: ubuntu-latest
13-
jdk: 21
13+
jdk: 25
1414
- os: windows-latest
1515
jdk: 8
1616
uses: ./.github/workflows/ci.yml

.github/workflows/ci-matrix-5.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- os: ubuntu-latest
1414
jdk: 11
1515
- os: ubuntu-latest
16-
jdk: 21
16+
jdk: 25
1717
- os: windows-latest
1818
jdk: 11
1919
uses: ./.github/workflows/ci.yml

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: |
2727
8
2828
11
29-
21
29+
25
3030
distribution: temurin
3131
- name: Set JAVA_HOME
3232
run: echo "JAVA_HOME=$JAVA_HOME_${{ inputs.jdk }}_X64" >> $GITHUB_ENV

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-java@v4
2525
with:
2626
java-version: |
27-
21
27+
25
2828
${{ inputs.jdk }}
2929
distribution: temurin
3030
- name: Get project version

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<properties>
2323
<pac4j.version>1.6.0</pac4j.version>
24-
<mockito.version>5.13.0</mockito.version>
24+
<mockito.version>5.20.0</mockito.version>
2525
<!-- When changing this version, make sure to update vertx-infinispan for dependency convergence -->
2626
<caffeine.version>3.2.1</caffeine.version>
2727
</properties>

vertx-web-validation/src/test/java/io/vertx/ext/web/validation/tests/RequestParametersTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
import java.util.HashMap;
1212
import java.util.Map;
1313

14-
import static org.junit.Assert.assertEquals;
15-
import static org.junit.Assert.assertNull;
16-
1714
public class RequestParametersTest {
1815

1916
@Test

0 commit comments

Comments
 (0)