Bump KUBERNETES_VERSION to latest 1.29.12 #159
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: Validate Kubernetes configuration files | |
'on': | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
KUBECONFORM_VERSION: "v0.6.7" | |
jobs: | |
validate: | |
name: Validate Kubernetes configuration files | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install kubeconform | |
run: | | |
mkdir -p "${HOME}/.local/bin" | |
curl -sL "https://github.com/yannh/kubeconform/releases/download/${KUBECONFORM_VERSION}/kubeconform-linux-amd64.tar.gz" | tar xzf - -C "${HOME}/.local/bin" kubeconform | |
- name: Validating Kubernetes configuration files | |
run: | | |
make validate |