Skip to content

Commit

Permalink
Fix Helm lint (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 authored May 14, 2024
1 parent bface93 commit 2bd6cb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm-multi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Lint Helm chart
uses: bakdata/ci-templates/actions/[email protected].1
uses: bakdata/ci-templates/actions/[email protected].3
with:
lint-config-path: "${{ inputs.lint-config-path }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Lint Helm chart
uses: bakdata/ci-templates/actions/[email protected].1
uses: bakdata/ci-templates/actions/[email protected].3
with:
lint-config-path: "${{ inputs.lint-config-path }}"

Expand Down
4 changes: 2 additions & 2 deletions actions/helm-lint/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ runs:
- name: Run chart-testing (lint)
run: |
if [[ "${GITHUB_REF#refs/heads/}" == "main" || "${GITHUB_REF#refs/heads/}" == "master" ]]; then
ct lint --config ${{ inputs.lint-config-path }} --since HEAD^ --check-version-increment false
ct lint --config ${{ inputs.lint-config-path }} --since HEAD^ --check-version-increment=false
else
ct lint --config ${{ inputs.lint-config-path }} --check-version-increment false
ct lint --config ${{ inputs.lint-config-path }} --check-version-increment=false
fi
shell: bash

0 comments on commit 2bd6cb0

Please sign in to comment.