Skip to content

Commit 8c233be

Browse files
committed
chore: set helm version to 3.19.2
1 parent 0231fc0 commit 8c233be

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

.github/workflows/release-pr.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ jobs:
7777

7878
- name: Set up Helm
7979
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
80+
# TODO: for now we set the version as we have not fixed everything to work with Helm v4
81+
with:
82+
version: v3.19.2
8083

8184
- name: Add Helm repos
8285
run: |
@@ -148,6 +151,9 @@ jobs:
148151

149152
- name: setup helm
150153
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
154+
# TODO: for now we set the version as we have not fixed everything to work with Helm v4
155+
with:
156+
version: v3.19.2
151157

152158
- name: setup testing environment (kind-cluster)
153159
env:
@@ -184,6 +190,9 @@ jobs:
184190

185191
- name: setup helm
186192
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
193+
# TODO: for now we set the version as we have not fixed everything to work with Helm v4
194+
with:
195+
version: v3.19.2
187196

188197
- uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1
189198
with:

.github/workflows/release-push.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
# See https://github.com/helm/chart-releaser-action/issues/6
4141
- name: Set up Helm
4242
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
43+
# TODO: for now we set the version as we have not fixed everything to work with Helm v4
44+
with:
45+
version: v3.19.2
4346

4447
- name: Add dependency chart repos
4548
run: |

.mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MISE_DATA_DIR='bin/'
44

55
[tools."http:helm"]
66
# renovate: datasource=github-releases depName=helm/helm
7-
version = "4.0.1"
7+
version = "3.19.2"
88

99
[tools."http:helm".platforms]
1010
linux-x64 = { url = "https://get.helm.sh/helm-v{version}-linux-amd64.tar.gz" }

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ HELM_VERSION = $(shell yq -p toml -o yaml '.tools["http:helm"].version' < $(MISE
5050
HELM = $(PROJECT_DIR)/bin/installs/http-helm/$(HELM_VERSION)/helm
5151
.PHONY: download.helm
5252
download.helm: mise ## Download helm locally if necessary.
53-
$(MAKE) mise-install DEP_VER=http:helm
53+
@$(MAKE) mise-install DEP_VER=http:helm
54+
55+
.PHONY: print.helm
56+
print.helm: download.helm
57+
@echo "$(HELM)"
5458

5559
.PHONY: verify.diff
5660
verify.diff:

0 commit comments

Comments
 (0)