From 0c8becd47f27f3c977ce96bc44089e71d79667b0 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Mon, 7 Apr 2025 23:31:58 +0200 Subject: [PATCH] fix(ci): use correct clustertool binary reference --- .github/workflows/charts-lint.yaml | 2 +- .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/charts-lint.yaml b/.github/workflows/charts-lint.yaml index c7b5ecc86df..314caef4c38 100644 --- a/.github/workflows/charts-lint.yaml +++ b/.github/workflows/charts-lint.yaml @@ -122,7 +122,7 @@ jobs: charts_path: "./" run: | CHANGED=$(echo '${{ steps.list-changed.outputs.CHANGED_CHARTS }}' | jq --raw-output '.[]') - ./temp/clustertool-bin deps ${CHANGED} + ./temp/clustertool deps ${CHANGED} - name: Run Chart Linting continue-on-error: true diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5bfc74cc479..56b10c9c089 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,7 +35,7 @@ repos: - id: requirements-txt-fixer # sorts entries in requirements.txt. exclude: ^archive/ - id: check-added-large-files # prevents giant files from being committed. - exclude: \.(png|jpg|jpeg|svg|yaml|yml|tpl|md)$|clustertool-bin$ + exclude: \.(png|jpg|jpeg|svg|yaml|yml|tpl|md)$ - id: check-yaml # checks yaml files for parseable syntax. exclude: (^archive|^website\/public|templates\/.*|crds\/.*|questions.yaml|chart_schema.yaml|common-test\/.*\.yaml|^clustertool) - id: detect-private-key # detects the presence of private keys.