From ed3b4dc1c3753c744c99c0ef023d82d0bcb5943d Mon Sep 17 00:00:00 2001 From: JesseBot Date: Mon, 10 Apr 2023 19:35:28 +0200 Subject: [PATCH] Fix helm GitHub Actions version constraints and bump kind-action to latest (#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 * 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 --------- Signed-off-by: JesseBot --- .github/workflows/lint-test.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index f1f7a52a..960220fd 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -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 @@ -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' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1ce086ff..8b7818ef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -44,6 +44,6 @@ jobs: helm repo add bitnami https://charts.bitnami.com/bitnami - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.5 + uses: helm/chart-releaser-action@v1.5.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"