Bump helm/kind-action from 1.10.0 to 1.11.0 #361
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: Lint and Test Charts | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
k8s: # See https://hub.docker.com/r/kindest/node/tags for valid tags | |
# For relevant EOLs https://endoflife.date/kubernetes / https://endoflife.date/amazon-eks / https://endoflife.date/azure-kubernetes-service / https://endoflife.date/google-kubernetes-engine | |
- v1.32.0 # EOL latest 2026-02-28 | |
- v1.31.4 # EOL latest 2025-12-22 for GKE | |
- v1.30.6 # EOL latest 2026-07-31 for AKS LTS | |
- v1.29.10 # EOL latest 2025-03-31 for AKS | |
- v1.28.15 # EOL latest 2025-02-04 for GKE | |
- v1.27.16 # EOL latest 2025-07-31 for AKS LTS | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: latest | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@5aa1c68405a43a57240a9b2869379324b2bec0fc | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --config .github/ct.yaml --target-branch ${{ github.event.repository.default_branch }}) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: ct lint --config .github/ct.yaml --target-branch ${{ github.event.repository.default_branch }} | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
with: | |
node_image: kindest/node:${{ matrix.k8s }} | |
# Only build a kind cluster if there are chart changes to test. | |
if: steps.list-changed.outputs.changed == 'true' | |
- name: Run chart-testing (install) | |
run: ct install --config .github/ct.yaml --target-branch ${{ github.event.repository.default_branch }} |