diff --git a/.github/workflows/unit-test-jdk11.yml b/.github/workflows/unit-test-jdk11.yml
index 39f644a2dc2..df2c21db113 100644
--- a/.github/workflows/unit-test-jdk11.yml
+++ b/.github/workflows/unit-test-jdk11.yml
@@ -33,7 +33,7 @@ jobs:
- name: Set up jdk
uses: actions/setup-java@v3
with:
- java-version: '11'
+ java-version: '11.0.18'
distribution: 'temurin'
- name: Compilation and Installation
run: mvn -B -Dcheckstyle.skip -Dspotbugs.skip=true clean test
diff --git a/.github/workflows/unit-test-jdk17.yml b/.github/workflows/unit-test-jdk17.yml
index 20102a3aa58..2604cd9c033 100644
--- a/.github/workflows/unit-test-jdk17.yml
+++ b/.github/workflows/unit-test-jdk17.yml
@@ -33,7 +33,7 @@ jobs:
- name: Set up jdk
uses: actions/setup-java@v3
with:
- java-version: '17'
+ java-version: '17.0.7'
distribution: 'temurin'
- name: Compilation and Installation
run: mvn -B -Dcheckstyle.skip -Dspotbugs.skip=true clean install -Pit
diff --git a/dependencies/default/pom.xml b/dependencies/default/pom.xml
index a4f3b63ef09..acd270ae280 100644
--- a/dependencies/default/pom.xml
+++ b/dependencies/default/pom.xml
@@ -78,7 +78,7 @@
5.14.0
2.2.0
0.3.0
- 4.1.130.Final
+ 4.1.131.Final
4.10.0
0.16.0
3.21.12
@@ -98,7 +98,7 @@
2.7.18
1.6.9
1.3.3
- 4.5.23
+ 4.5.25
2.24.0
2.16.3
9.0.108
diff --git a/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java b/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java
index 7297a866b2f..aa68b17396e 100644
--- a/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java
+++ b/foundations/foundation-vertx/src/test/java/io/vertx/ext/web/impl/TestHttpServerRequestUtils.java
@@ -38,6 +38,7 @@ public void testVertxServerRequestToHttpServletRequest() {
Mockito.when(request.scheme()).thenReturn("http");
Mockito.when(context.request()).thenReturn(wrapper);
Mockito.when(request.authority()).thenReturn(HostAndPort.create("localhost", 8080));
+ Mockito.when(request.uri()).thenReturn("/test");
RequestBody requestBody = Mockito.mock(RequestBody.class);
Mockito.when(context.body()).thenReturn(requestBody);