From f21649ef980942e3dd541e6d528a9e185ff5859f Mon Sep 17 00:00:00 2001 From: CSRBot Date: Wed, 19 Aug 2026 06:01:59 +0000 Subject: [PATCH] chore(deps): update dependency mikefarah/yq to v4.53.4 --- README.md | 2 +- action.yaml | 2 +- install-yq.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ce968c1..277317f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ steps: | `chart-path` | no | `${{ github.workspace }}/Chart.yaml` | Path to the Helm chart file. | | `old-tag` | no | auto-detected | Start tag for changelog generation. | | `new-tag` | no | auto-detected | End tag for changelog generation. | -| `yq-version` | no | `v4.53.3` | Version of yq to install. | +| `yq-version` | no | `v4.53.4` | Version of yq to install. | | `yq-arch` | no | auto-detected | Architecture of yq binary to download. | | `yq-os` | no | auto-detected | Operating system of yq binary to download. | | `yq-binary-name` | no | `yq` | Name of the yq binary to download. | diff --git a/action.yaml b/action.yaml index 325593d..5066a61 100644 --- a/action.yaml +++ b/action.yaml @@ -35,7 +35,7 @@ inputs: yq-version: description: "Version of yq to install" required: false - default: "v4.53.3" # renovate: datasource=github-releases depName=mikefarah/yq versioning=semver + default: "v4.53.4" # renovate: datasource=github-releases depName=mikefarah/yq versioning=semver runs: using: "composite" diff --git a/install-yq.sh b/install-yq.sh index 12ca93c..4e9c723 100755 --- a/install-yq.sh +++ b/install-yq.sh @@ -2,7 +2,7 @@ set -euo pipefail -internal_yq_version=v4.53.3 # renovate: datasource=github-releases depName=mikefarah/yq versioning=semver +internal_yq_version=v4.53.4 # renovate: datasource=github-releases depName=mikefarah/yq versioning=semver # Use :- for unset and handle empty strings from composite action inputs YQ_BINARY_NAME="${YQ_BINARY_NAME:="yq"}"