chore(deps): Bump actions/upload-artifact from 5.0.0 to 6.0.0 #2107
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint helm chart | |
| on: | |
| push: | |
| # run pipeline on push on master | |
| branches: | |
| - main | |
| paths: | |
| - "charts/**" | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: "0" | |
| - name: chart-testing (ct lint) | |
| uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f # v2.8.0 | |
| - name: Run Helm Chart lint | |
| run: | | |
| set -e | |
| ct lint --lint-conf=.github/ct_lintconf.yaml \ | |
| --chart-yaml-schema=.github/ct_chart_schema.yaml \ | |
| --target-branch=main \ | |
| --validate-maintainers=false \ | |
| --check-version-increment=false \ | |
| --chart-dirs charts |