Skip to content

Commit 4d96fec

Browse files
authored
Merge pull request #17 from scottrigby/update-action-versions
Update Helm action versions for CI/CD
2 parents 6d3818e + fca0073 commit 4d96fec

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/lint-test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
uses: actions/checkout@v1
1111

1212
- name: Create kind cluster
13-
uses: helm/kind-action@v1.0.0-alpha.2
13+
uses: helm/kind-action@v1.0.0-alpha.3
1414
with:
15-
installLocalPathProvisioner: true
15+
install_local_path_provisioner: true
1616

1717
- name: Run chart-testing (lint)
18-
uses: helm/chart-testing-action@v1.0.0-alpha.1
18+
uses: helm/chart-testing-action@v1.0.0-alpha.2
1919
with:
2020
command: lint
2121

2222
- name: Run chart-testing (install)
23-
uses: helm/chart-testing-action@v1.0.0-alpha.1
23+
uses: helm/chart-testing-action@v1.0.0-alpha.2
2424
with:
2525
command: install

.github/workflows/release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@ jobs:
1818
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
1919
2020
# See https://github.com/helm/chart-releaser-action/issues/6
21-
# For now, install the same version of Tiller as the chart-testing Helm
22-
# client version: v2.15.2.
2321
- name: Install Helm
2422
run: |
2523
curl -sSLo get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get
2624
chmod 700 get_helm.sh
27-
DESIRED_VERSION=v2.15.2 ./get_helm.sh
25+
./get_helm.sh
2826
helm init --client-only
2927
3028
- name: Add dependency chart repos
@@ -33,6 +31,6 @@ jobs:
3331
helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
3432
3533
- name: Run chart-releaser
36-
uses: helm/chart-releaser-action@v1.0.0-alpha.1
34+
uses: helm/chart-releaser-action@v1.0.0-alpha.2
3735
env:
3836
CR_TOKEN: "${{ secrets.CR_TOKEN }}"

0 commit comments

Comments
 (0)