From 2bcf08457b710053e4612426ff3393ef7daa6d87 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Thu, 30 Oct 2025 10:56:24 +0000 Subject: [PATCH] ci: revert workaround for get.helm.sh outage (#20552) (#20557) Reverts the temporary workaround in #20552. Merge after get.helm.sh is once again operational. --- .github/workflows/ci.yaml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5efa2edbc9..96d0ce2395 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -204,17 +204,9 @@ jobs: # Needed for helm chart linting - name: Install helm - # uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 - # with: - # version: v3.9.2 - # The below is taken from https://helm.sh/docs/intro/install/#from-apt-debianubuntu - run: | - set -euo pipefail - sudo apt-get install curl gpg apt-transport-https --yes - curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null - echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list - sudo apt-get update - sudo apt-get install helm + uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 + with: + version: v3.9.2 - name: make lint run: |