diff --git a/bom/application/pom.xml b/bom/application/pom.xml
index 44e4b183483d6..4dd990f5922c4 100644
--- a/bom/application/pom.xml
+++ b/bom/application/pom.xml
@@ -41,7 +41,7 @@
2.2.5
2.4.4
2.0.15
- 1.0.15
+ 1.0.18
1.3.4
4.3.2
2.3.1
diff --git a/extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/MetricsTest.java b/extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/MetricsTest.java
index 8afcdbb3138f2..e5462a3fc794e 100644
--- a/extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/MetricsTest.java
+++ b/extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/MetricsTest.java
@@ -36,7 +36,7 @@ public class MetricsTest {
public void testQuery() {
MetricRegistry metricRegistry = MetricRegistries.get(MetricRegistry.Type.VENDOR);
SimpleTimer metric = metricRegistry.getSimpleTimers()
- .get(new MetricID("mp_graphql", new Tag("type", "Query"), new Tag("name", "ping")));
+ .get(new MetricID("mp_graphql", new Tag("type", "QUERY"), new Tag("name", "ping"), new Tag("source", "false")));
assertNotNull(metric, "Metrics should be registered eagerly");
String pingRequest = getPayload("{\n" +