From 5ef0f31379ec913bc3c5ec13a2d1f99bcaaa1e10 Mon Sep 17 00:00:00 2001 From: KevFan Date: Fri, 11 Aug 2023 16:11:03 +0100 Subject: [PATCH] workflow: pin yq version to v4.34.2 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b80f75a96..124c398b9 100644 --- a/Makefile +++ b/Makefile @@ -190,8 +190,9 @@ $(KUSTOMIZE): kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary. YQ=$(PROJECT_PATH)/bin/yq +YQ_VERSION := v4.34.2 $(YQ): - $(call go-install-tool,$(YQ),github.com/mikefarah/yq/v4@latest) + $(call go-install-tool,$(YQ),github.com/mikefarah/yq/v4@$(YQ_VERSION)) .PHONY: yq yq: $(YQ) ## Download yq locally if necessary.