Bump azure/setup-helm from 3.5 to 4 #192
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: Linter | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
on: | |
pull_request: | |
jobs: | |
linter: | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code | |
uses: github/super-linter@v5.0.0 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# These comments are in the same order as the exceptions below | |
# Kubeval error "Missing 'metadata' key" on Chart.yaml | |
# Exclude yaml from helm templates - yamllint parses incorrectly | |
FILTER_REGEX_EXCLUDE: | |
"(\ | |
Chart.yaml|\ | |
charts/.*/templates/.*\\.yaml|\ | |
)" |