From 4e30ec1237be42f0fd9e0b61d63f8e9ef3c6c5f6 Mon Sep 17 00:00:00 2001 From: Marco Ebert Date: Sun, 14 Dec 2025 00:08:19 +0100 Subject: [PATCH] CI: Update Helm to v4.0.4. --- .github/workflows/chart.yaml | 2 +- .github/workflows/ci.yaml | 2 +- charts/Makefile | 2 +- go.mod | 2 +- go.sum | 4 ++-- hack/.tool-versions | 2 +- images/test-runner/Makefile | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/chart.yaml b/.github/workflows/chart.yaml index 7a6874815e..c3ad1e9c1c 100644 --- a/.github/workflows/chart.yaml +++ b/.github/workflows/chart.yaml @@ -30,7 +30,7 @@ jobs: - name: Set up Helm uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 with: - version: v4.0.2 + version: v4.0.4 - name: Set up Helm Chart Testing uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d0e16cca46..e55930f9e8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -225,7 +225,7 @@ jobs: - name: Set up Helm uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 with: - version: v4.0.2 + version: v4.0.4 - name: Set up Helm Chart Testing uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f diff --git a/charts/Makefile b/charts/Makefile index b6d5b6d2e6..ad06c3c24f 100644 --- a/charts/Makefile +++ b/charts/Makefile @@ -19,7 +19,7 @@ REPOSITORY ?= $(REGISTRY)/charts .PHONY: helm helm: - command -v helm || go install helm.sh/helm/v4/cmd/helm@v4.0.2 + command -v helm || go install helm.sh/helm/v4/cmd/helm@v4.0.4 .PHONY: package package: helm diff --git a/go.mod b/go.mod index 95f4dd1b1c..9f6070c0e3 100644 --- a/go.mod +++ b/go.mod @@ -32,7 +32,7 @@ require ( google.golang.org/grpc v1.77.0 gopkg.in/go-playground/pool.v3 v3.1.1 gopkg.in/mcuadros/go-syslog.v2 v2.3.0 - helm.sh/helm/v4 v4.0.2 + helm.sh/helm/v4 v4.0.4 k8s.io/api v0.34.3 k8s.io/apiextensions-apiserver v0.34.3 k8s.io/apimachinery v0.34.3 diff --git a/go.sum b/go.sum index 90954848f4..e8844763ad 100644 --- a/go.sum +++ b/go.sum @@ -382,8 +382,8 @@ gopkg.in/yaml.v3 v3.0.0-20191026110619-0b21df46bc1d/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -helm.sh/helm/v4 v4.0.2 h1:yepsAylC26bsPGf3NutSWSDc+iVmi1CijXjZd5WnHbk= -helm.sh/helm/v4 v4.0.2/go.mod h1:G1Y5AE+lJPQSAjh7nbXnhZrtGtxo+I6POSu9DruYiGI= +helm.sh/helm/v4 v4.0.4 h1:5Lokr7XxCe6IW/NMtdECuAFW/0bTs/2831deUrlKqP8= +helm.sh/helm/v4 v4.0.4/go.mod h1:fMyG9onvVK6HOBjjkzhhHORAsgEWlRMqDY84lvX7GvY= k8s.io/api v0.34.3 h1:D12sTP257/jSH2vHV2EDYrb16bS7ULlHpdNdNhEw2S4= k8s.io/api v0.34.3/go.mod h1:PyVQBF886Q5RSQZOim7DybQjAbVs8g7gwJNhGtY5MBk= k8s.io/apiextensions-apiserver v0.34.3 h1:p10fGlkDY09eWKOTeUSioxwLukJnm+KuDZdrW71y40g= diff --git a/hack/.tool-versions b/hack/.tool-versions index 56aba8ac03..33690a2040 100644 --- a/hack/.tool-versions +++ b/hack/.tool-versions @@ -1,2 +1,2 @@ kustomize 4.5.4 -helm 4.0.2 +helm 4.0.4 diff --git a/images/test-runner/Makefile b/images/test-runner/Makefile index 8e8a882aa5..2012d03ee9 100644 --- a/images/test-runner/Makefile +++ b/images/test-runner/Makefile @@ -43,7 +43,7 @@ build: builder --build-arg CHART_TESTING_VERSION=3.8.0 \ --build-arg YAML_LINT_VERSION=1.33.0 \ --build-arg YAMALE_VERSION=4.0.4 \ - --build-arg HELM_VERSION=4.0.2 \ + --build-arg HELM_VERSION=4.0.4 \ --build-arg GINKGO_VERSION=2.27.3 \ --build-arg GOLINT_VERSION=latest \ rootfs \