Skip to content

Commit

Permalink
add versions to deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Scaffidi committed Nov 1, 2024
1 parent 9115323 commit d6a3a5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -318,19 +318,19 @@ OPM = $(shell which opm)
endif
endif

YQ ?= $(LOCALBIN)/yq
YQ_VERSION ?= latest
YQ_VERSION ?= v4.44.3
YQ ?= $(LOCALBIN)/yq-$(YQ_VERSION)
.PHONY: yq
yq: $(YQ) ## Download yq locally if necessary.
$(YQ): $(LOCALBIN)
$(call go-install-tool,$(YQ),github.com/mikefarah/yq/v4,${YQ_VERSION})
$(call go-install-tool,$(YQ),github.com/mikefarah/yq/v4,$(YQ_VERSION))

HELMIFY ?= $(LOCALBIN)/helmify
HELMIFY_VERSION ?= latest
HELMIFY_VERSION ?= v0.4.14
HELMIFY ?= $(LOCALBIN)/helmify-$(HELMIFY_VERSION)
.PHONY: helmify
helmify: $(HELMIFY) ## Download helmify locally if necessary.
$(HELMIFY): $(LOCALBIN)
$(call go-install-tool,$(HELMIFY),github.com/arttor/helmify/cmd/helmify,${HELMIFY_VERSION})
$(call go-install-tool,$(HELMIFY),github.com/arttor/helmify/cmd/helmify,$(HELMIFY_VERSION))

##@ Release

Expand Down

0 comments on commit d6a3a5d

Please sign in to comment.