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 <jakob.naucke@ibm.com>
This commit is contained in:
Jakob Naucke 2021-01-14 15:59:01 +01:00
parent d54c702539
commit 8045104eaf

View File

@ -56,7 +56,7 @@ function install_yq() {
die "Please install curl" die "Please install curl"
fi fi
local yq_version=3.1.0 local yq_version=3.4.1
## NOTE: ${var,,} => gives lowercase value of var ## NOTE: ${var,,} => gives lowercase value of var
local yq_url="https://${yq_pkg}/releases/download/${yq_version}/yq_${goos,,}_${goarch}" local yq_url="https://${yq_pkg}/releases/download/${yq_version}/yq_${goos,,}_${goarch}"