Skip to content

Update renovatebot/github-action action to v41.0.9 #3297

Update renovatebot/github-action action to v41.0.9

Update renovatebot/github-action action to v41.0.9 #3297

Workflow file for this run

name: Lint and Test Charts
on:
pull_request:
push:
branches-ignore:
- main
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/[email protected]
- name: Add Helm reopos
run: |
helm repo add k8s-at-home-library https://library-charts.k8s-at-home.com
helm repo update
- uses: actions/[email protected]
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --config .github/ct.yaml)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint --config .github/ct.yaml
- name: Create kind cluster
uses: helm/[email protected]
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing (install)
run: ct install --config .github/ct.yaml