Bump github.com/aws/aws-sdk-go-v2/config from 1.28.0 to 1.28.1 #993
Workflow file for this run
This file contains 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: "0" | |
- name: chart-testing (ct lint) | |
uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1 | |
- 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 |