From 04c5632e4880fdec2934cc7f64f1e66bc40403a5 Mon Sep 17 00:00:00 2001 From: Niladri Halder Date: Fri, 5 Jul 2024 16:09:55 +0530 Subject: [PATCH] ci: remove caching for openebs-ndm dependency Signed-off-by: Niladri Halder --- .github/workflows/chart-lint-test.yml | 12 ++++++------ .github/workflows/release-charts.yml | 8 ++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/chart-lint-test.yml b/.github/workflows/chart-lint-test.yml index 699707f2..5dd90bc6 100644 --- a/.github/workflows/chart-lint-test.yml +++ b/.github/workflows/chart-lint-test.yml @@ -22,11 +22,11 @@ jobs: fetch-depth: 0 - name: Set up Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: - version: v3.12.1 + version: v3.14.3 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.10' check-latest: true @@ -39,14 +39,14 @@ jobs: run: | changed=$(ct list-changed --config ct.yaml) if [[ -n "$changed" ]]; then - echo "::set-output name=changed::true" + echo "changed=true" >> $GITHUB_OUTPUT fi - name: Run chart-testing (lint) run: ct lint --config ct.yaml - - name: Create kind cluster - uses: helm/kind-action@v1.8.0 + - name: Create kind cluster + uses: helm/kind-action@v1.9.0 if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) diff --git a/.github/workflows/release-charts.yml b/.github/workflows/release-charts.yml index b5a6591d..95c9ba40 100644 --- a/.github/workflows/release-charts.yml +++ b/.github/workflows/release-charts.yml @@ -22,13 +22,9 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: Install Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: - version: v3.12.1 - - - name: Add dependency chart repos - run: | - helm repo add openebs-ndm https://openebs.github.io/node-disk-manager + version: v3.14.3 - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0