Skip to content

update helm charts

update helm charts #22

Workflow file for this run

name: Lint Helm charts
on:
push:
paths:
- "charts/**"
workflow_dispatch:
env:
HELM_VERSION: 3.17.0
jobs:
lint-helm-charts:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Helm
uses: mamezou-tech/[email protected]
with:
helm-version: "v${{ env.HELM_VERSION }}"
- name: Lint Helm Charts
run: |
helm lint charts/*
working-directory: ${{ github.workspace }}