Skip to content

Commit ccda392

Browse files
authored
install specific version of helm (#131)
Signed-off-by: Manabu McCloskey <[email protected]>
1 parent 346110c commit ccda392

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,17 @@ jobs:
4747
version: 3.x
4848

4949
- name: Install Helm
50-
uses: azure/setup-helm@v4
50+
run: |
51+
set -euo pipefail
52+
curl -sSL https://get.helm.sh/helm-v3.19.3-linux-amd64.tar.gz -o helm.tar.gz
53+
tar -zxvf helm.tar.gz
54+
sudo mv linux-amd64/helm /usr/local/bin/helm
55+
rm helm.tar.gz
56+
rm -rf linux-amd64
57+
helm version --short
5158
5259
- name: Install helm unittest
53-
run: helm plugin install https://github.com/helm-unittest/helm-unittest
60+
run: helm plugin install https://github.com/helm-unittest/helm-unittest --version 1.0.3
5461

5562
- name: Set up Python ${{ matrix.python-version }}
5663
run: uv python install ${{ matrix.python-version }}

0 commit comments

Comments
 (0)