From bba4eea87db03b678ec67c337ecff4f4e57cc504 Mon Sep 17 00:00:00 2001 From: Pedro Ruivo Date: Fri, 23 Jan 2026 17:53:04 +0000 Subject: [PATCH] Fix mixed-cluster-compatibility-tests version matrix Fixes #45708 Signed-off-by: Pedro Ruivo <1492066+pruivo@users.noreply.github.com> Co-authored-by: Pedro Ruivo <1492066+pruivo@users.noreply.github.com> --- .github/scripts/version-compatibility.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/version-compatibility.sh b/.github/scripts/version-compatibility.sh index 86e99eae24e..a8257c69822 100755 --- a/.github/scripts/version-compatibility.sh +++ b/.github/scripts/version-compatibility.sh @@ -26,5 +26,5 @@ MAJOR_MINOR_RELEASES=$(echo "${ALL_RELEASES}" | (grep "${MAJOR_MINOR}" || true)) if [[ -z "${MAJOR_MINOR_RELEASES}" ]]; then echo "skip" else - echo -n "${MAJOR_MINOR_RELEASES}" | jq -cnR '[inputs] | map({version: .})' + echo -n "${MAJOR_MINOR_RELEASES}" | jq -cnMR '[inputs] | map({version: .})' fi