This is an automated email from the ASF dual-hosted git repository.
gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 4d7bc13a3 [hotfix][ci] Replace disallowed azure/setup-helm action with
a direct Helm download (#1151)
4d7bc13a3 is described below
commit 4d7bc13a3ad8e13093ef33594f2754505c015fe9
Author: Dennis-Mircea Ciupitu <[email protected]>
AuthorDate: Thu Jul 2 15:26:28 2026 +0300
[hotfix][ci] Replace disallowed azure/setup-helm action with a direct Helm
download (#1151)
---
.github/workflows/ci.yml | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 513d6510c..69410ce40 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -60,9 +60,13 @@ jobs:
fetch-depth: 0
- name: Set up Helm
- uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4
- with:
- version: v3.17.3
+ run: |
+ HELM_VERSION=v3.17.3
+ curl -fsSLo /tmp/helm.tar.gz
"https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz"
+ echo "$(curl -fsSL
"https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz.sha256sum" | cut
-d' ' -f1) /tmp/helm.tar.gz" | sha256sum -c -
+ mkdir -p /tmp/helm
+ tar -xzf /tmp/helm.tar.gz -C /tmp/helm
+ sudo mv /tmp/helm/linux-amd64/helm /usr/local/bin/helm
- name: Install Helm unittest plugin
run: helm plugin install
https://github.com/helm-unittest/helm-unittest.git --version 0.8.1