Skip to content

chore: bump k8s.io/api from 0.32.2 to 0.32.3 #7758

chore: bump k8s.io/api from 0.32.2 to 0.32.3

chore: bump k8s.io/api from 0.32.2 to 0.32.3 #7758

Workflow file for this run

name: Helm Lint and Test Charts
on: pull_request
jobs:
lint-helm-chart:
name: Lint Helm Chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.11.1
- uses: actions/setup-python@v5
with:
python-version: '3.9'
check-latest: true
- name: Set up chart-testing
uses: helm/[email protected]
- name: Get changed files in the docs folder
id: changed-files-specific
uses: marceloprado/[email protected]
with:
paths: ./cmd/relayproxy/helm-charts/
- name: Run chart-testing (lint)
working-directory: ./cmd/relayproxy/helm-charts/relay-proxy/
run: ct lint --chart-dirs . --charts .
- name: Create kind cluster
uses: helm/[email protected]
if: steps.changed-files-specific.outputs.changed == 'true'
- name: Run chart-testing (install)
working-directory: ./cmd/relayproxy/helm-charts/relay-proxy/
run: ct install --chart-dirs . --charts .
if: steps.changed-files-specific.outputs.changed == 'true'