Bump up helm setup version #5
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' | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v4' | |
# Set up Helm | |
- name: 'Set up Helm' | |
uses: 'azure/[email protected]' | |
- name: 'Update dependencies' | |
run: | | |
#!/bin/bash | |
for chart in ./charts/*; do | |
cd $chart | |
helm dependency update | |
cd - | |
done; | |
# Lint Helm charts | |
- name: 'Lint Helm charts' | |
run: 'make lint' |