Skip to content

Commit

Permalink
Fix helm GitHub Actions version constraints and bump kind-action to l…
Browse files Browse the repository at this point in the history
…atest (#376)

* lint-test.yaml: fix helm/kind-action & helm/chart-testing

Fixed because:
- helm/kind-action does not create tags for minor versions with no patch version: https://github.com/helm/kind-action/tags
- helm/chart-testing-action does not create tags for minor versions with no patch version: https://github.com/helm/chart-testing-action/tags

Signed-off-by: JesseBot <[email protected]>

* fix chart-releaser github action version

helm/chart-releaser does not create tags for minor versions without patch version, so we can't relax this right now: https://github.com/helm/chart-releaser-action/tags

Signed-off-by: JesseBot <[email protected]>

---------

Signed-off-by: JesseBot <[email protected]>
  • Loading branch information
jessebot authored Apr 10, 2023
1 parent aa54644 commit ed3b4dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3
uses: helm/chart-testing-action@v2.4.0

- name: Run chart-testing (list-changed)
id: list-changed
Expand All @@ -44,7 +44,7 @@ jobs:
run: ct lint --config ct.yaml

- name: Create kind cluster
uses: helm/kind-action@v1.4
uses: helm/kind-action@v1.5.0
with:
install_local_path_provisioner: true
if: steps.list-changed.outputs.changed == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ jobs:
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/[email protected]
uses: helm/[email protected].0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit ed3b4dc

Please sign in to comment.