chore(deps): update azure/setup-helm action to v4 (#7) #213
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: Helm Lint | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
helm-lint: | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Helm | |
uses: azure/setup-helm@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} # only needed if version is 'latest' | |
- name: Download helm dependencies | |
run: find apps/ -name config.json -exec $SHELL -c 'echo {} && helm dependency update $(dirname {})' \; | |
- name: Run Helm Lint | |
run: find apps/ -name config.json -exec dirname {} \; | xargs helm lint | |
- name: Setup helmfile | |
uses: mamezou-tech/[email protected] | |
- name: Run helmfile lint | |
run: helmfile lint -f cluster-setup/first-run/ | |
- uses: sarisia/actions-status-discord@v1 | |
if: failure() | |
with: | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} |