From 8045104eafdcdc76aa6ac566bab5700c88e0d0a2 Mon Sep 17 00:00:00 2001 From: Jakob Naucke Date: Thu, 14 Jan 2021 15:59:01 +0100 Subject: [PATCH] ci: Upgrade to yq 3.4.1 Since the resolution of https://github.com/mikefarah/yq/issues/502, the `yq` binary is no longer broken on s390x. This is an upgrade to the latest v3 version of yq (v4 has new syntax). Fixes: #1260 Signed-off-by: Jakob Naucke --- ci/install_yq.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/install_yq.sh b/ci/install_yq.sh index 2bc3cf21af..502fe67a4a 100755 --- a/ci/install_yq.sh +++ b/ci/install_yq.sh @@ -56,7 +56,7 @@ function install_yq() { die "Please install curl" fi - local yq_version=3.1.0 + local yq_version=3.4.1 ## NOTE: ${var,,} => gives lowercase value of var local yq_url="https://${yq_pkg}/releases/download/${yq_version}/yq_${goos,,}_${goarch}"