We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346110c commit ccda392Copy full SHA for ccda392
.github/workflows/ci.yml
@@ -47,10 +47,17 @@ jobs:
47
version: 3.x
48
49
- name: Install Helm
50
- uses: azure/setup-helm@v4
+ 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
58
59
- name: Install helm unittest
- 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
61
62
- name: Set up Python ${{ matrix.python-version }}
63
run: uv python install ${{ matrix.python-version }}
0 commit comments