From f8d435b81fc0fff0a6ef3f576ad51d6bbebdefb7 Mon Sep 17 00:00:00 2001 From: Adam Cattermole Date: Fri, 11 Aug 2023 15:44:24 +0100 Subject: [PATCH] Pin yq version to v4.34.2 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 047a72a0..974d4f74 100644 --- a/Makefile +++ b/Makefile @@ -105,8 +105,9 @@ kustomize: ## Download kustomize locally if necessary. $(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@v4.5.5) YQ = $(shell pwd)/bin/yq +YQ_VERSION := v4.34.2 $(YQ): - $(call go-get-tool,$(YQ),github.com/mikefarah/yq/v4@latest) + $(call go-get-tool,$(YQ),github.com/mikefarah/yq/v4@$(YQ_VERSION)) .PHONY: yq yq: $(YQ) ## Download yq locally if necessary.