Bump azure/setup-helm from 3.5 to 4 #90
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: ci | |
# yamllint disable-line rule:truthy | |
on: push | |
jobs: | |
ci: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 🔩 Install dependencys | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.7 | |
- name: 🔩 Setup helmchart lint | |
uses: helm/chart-testing-action@main | |
- name: 🚀 Run yamllint | |
uses: frenck/action-yamllint@v1 | |
- name: 🚀 Run markdownlint | |
uses: actionshub/markdownlint@v3.1.4 | |
- name: 🚀 Run helmchart lint | |
run: ct lint --all --config ./.github/ct.yaml | |
- name: 📝Generate helm-chart documentation | |
run: .github/scripts/helm-docs.sh | |
- name: ⤴️ Commit automatically generated documentation | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: add automatically generated documentation | |
committer_name: GitHub Actions | |
committer_email: actions@github.com | |
add: '*.md' |