Skip to content

Bump actions/checkout from 4.2.0 to 4.2.1 in the minor group #231

Bump actions/checkout from 4.2.0 to 4.2.1 in the minor group

Bump actions/checkout from 4.2.0 to 4.2.1 in the minor group #231

Workflow file for this run

name: Helm Charts
on:
push:
pull_request:
jobs:
lint:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Helm
uses: azure/[email protected]
- name: Setup Chart Testing
uses: helm/[email protected]
- name: Install chart dependencies
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Lint
run: >
ct
lint
--target-branch=${{ github.event.repository.default_branch }}
--validate-maintainers=false