From 974603a9c54cff6c60b9e402254acfe69273b596 Mon Sep 17 00:00:00 2001 From: Timo Furrer <tfurrer@gitlab.com> Date: Tue, 9 Jul 2024 09:20:28 +0200 Subject: [PATCH] Remove usage of yq -r because renovate image does not support it --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f18d15f..b913e37 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ docs: echo >> README.md echo 'The following OpenTofu versions are available with this component via the `opentofu_version` input:' >> README.md echo >> README.md - yq -r '.".data".supported_versions | .[] | "- [`" + . + "`](https://github.com/opentofu/opentofu/releases/tag/v" + . + ")"' opentofu_versions.yaml >> README.md + yq '.".data".supported_versions | .[] | "- [`" + . + "`](https://github.com/opentofu/opentofu/releases/tag/v" + . + ")"' opentofu_versions.yaml >> README.md tail -n+2 readme1 >> README.md rm -f readme0 readme1 readme_inputs.md -- GitLab