From 57f4df0abba08bb6fa1fbd1176c51a22d7012615 Mon Sep 17 00:00:00 2001 From: Elias Ricken de Medeiros <26007058+erdemedeiros@users.noreply.github.com> Date: Tue, 12 Apr 2022 10:31:51 +0200 Subject: [PATCH] Bump yq from version `4.6.1` to `4.24.4` This adds the possiblity to parse XML files using yq. I.e: ``` yq -p=xml e '.project.properties."activiti-cloud.version"' pom.xml ``` --- .github/actions/setup-yq/action.yml | 2 +- .travis.yq_install.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-yq/action.yml b/.github/actions/setup-yq/action.yml index 767e1d07e..f8698f5f7 100644 --- a/.github/actions/setup-yq/action.yml +++ b/.github/actions/setup-yq/action.yml @@ -4,7 +4,7 @@ inputs: version: description: 'Version of yq' required: false - default: 4.6.1 + default: 4.24.4 runs: using: "composite" steps: diff --git a/.travis.yq_install.yml b/.travis.yq_install.yml index 742e65d08..67e1ffcfc 100644 --- a/.travis.yq_install.yml +++ b/.travis.yq_install.yml @@ -2,7 +2,7 @@ import: - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.3.0 before_install: - |- - TOOL_VERSION=${YQ_VERSION:-4.6.1} + TOOL_VERSION=${YQ_VERSION:-4.24.4} TOOL_NAME=yq TOOL_REPO=mikefarah/$TOOL_NAME TOOL_OS=$(uname | tr '[:upper:]' '[:lower:]')