diff --git a/11.6-ubi/Dockerfile b/11.6-ubi/Dockerfile
index 8380f3c27ef8ea0edf9ec5caa14f66d0dfbce995..46e67ba4b0079281a0e11e5aee592d4744b94f5f 100644
--- a/11.6-ubi/Dockerfile
+++ b/11.6-ubi/Dockerfile
@@ -36,7 +36,7 @@ COPY MariaDB.repo /etc/yum.repos.d/
 # https://access.redhat.com/documentation/en-us/red_hat_software_certification/2024/html/red_hat_openshift_software_certification_policy_guide/assembly-requirements-for-container-images_openshift-sw-cert-policy-introduction#con-image-metadata-requirements_openshift-sw-cert-policy-container-images
 LABEL name="MariaDB Server" \
 	vendor="MariaDB Community" \
-	version="11.6.0 Vector" \
+	version="11.6.0" \
 	release="Refer to Annotations org.opencontainers.image.{revision,source}" \
 	summary="MariaDB Database" \
 	description="MariaDB Database for relational SQL"
@@ -50,11 +50,11 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
       org.opencontainers.image.licenses="GPL-2.0" \
       org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
       org.opencontainers.image.vendor="MariaDB Community" \
-      org.opencontainers.image.version="11.6.0 Vector" \
+      org.opencontainers.image.version="11.6.0" \
       org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
 
 # bashbrew-architectures: amd64 arm64v8 ppc64le s390x
-ARG MARIADB_VERSION=11.6.0 Vector
+ARG MARIADB_VERSION=11.6.0
 ENV MARIADB_VERSION=$MARIADB_VERSION
 # release-status:Unknown
 # release-support-type:Unknown
diff --git a/update.sh b/update.sh
index 3ef526b267455fe47dd4c2efba22aa1b26c0fcbc..4055f78ffc06c020313f5db675b7eaac9d9e738b 100755
--- a/update.sh
+++ b/update.sh
@@ -193,7 +193,7 @@ update_version_array()
 mariaversion()
 {
 	mariaVersion=$(curl -fsSL "$DOWNLOADS_REST_API/mariadb/${version%-*}" \
-		| jq -r 'first(.releases[]).release_id')
+		| jq -r 'first(.releases[] | .release_id | select(. | test("[0-9]+.[0-9]+.[0-9]+$")))')
 	mariaVersion=${mariaVersion//\"}
 }