Update go.mod and K8s client to v0.32.1 #920
Workflow file for this run
This file contains hidden or 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: Validate Chart | |
on: | |
push: | |
paths: | |
- chart/** | |
- contrib/validate_chart.sh | |
- contrib/lint_chart.sh | |
- .github/workflows/helm.yaml | |
pull_request: | |
paths: | |
- chart/** | |
- contrib/validate_chart.sh | |
- contrib/lint_chart.sh | |
- .github/workflows/helm.yaml | |
jobs: | |
lint-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: alexellis/arkade-get@master | |
with: | |
helm: latest | |
# - uses: azure/setup-helm@v3 | |
- name: Helm Lint | |
run: ./contrib/lint_chart.sh | |
kubeval-chart: | |
runs-on: ubuntu-latest | |
needs: | |
- lint-chart | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: alexellis/arkade-get@master | |
with: | |
kubeval: latest | |
# - uses: lra/setup-kubeval@v1 | |
# with: | |
# version: v0.16.1 | |
- name: Run kubeval | |
env: | |
KUBEVAL_SCHEMA_LOCATION: "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/" | |
KUBERNETES_VERSION: v1.26.11 v1.27.1 1.28.4 | |
run: ./contrib/lint_chart.sh |