chore: bump edge to 19.0.0 #236
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: ci | |
on: | |
pull_request: | |
paths: | |
- "charts/**/**" | |
jobs: | |
codespell: | |
name: codespell | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Codespell | |
uses: codespell-project/actions-codespell@master | |
with: | |
skip: ".git" | |
exclude_file: ".github/codespell-ignore.list" | |
ignore_words_file: ".github/codespell-ignore.list" | |
check_filenames: true | |
check_hidden: true | |
lint-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.11.1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
check-latest: true | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (lint) | |
run: ct lint --config .github/ct.yaml | |
super-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# https://github.com/github/super-linter/issues/1397 | |
with: | |
# Full git history is needed to get a proper | |
# list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_JSCPD: false | |
VALIDATE_KUBERNETES_KUBEVAL: false | |
VALIDATE_YAML: false | |
kubeconform: | |
runs-on: ubuntu-latest | |
needs: | |
- codespell | |
- super-linter | |
- lint-chart | |
strategy: | |
matrix: | |
k8s: | |
- 1.23.17 | |
- 1.24.11 | |
- 1.25.7 | |
- 1.26.2 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: 3.11.1 | |
- name: Run kubeconform tests | |
run: .github/kubeconform.sh | |
env: | |
KUBERNETES_VERSION: ${{ matrix.k8s }} | |
KUBECONFORM_VERSION: v0.6.4 | |
- name: Create test summary | |
uses: test-summary/action@v2 | |
with: | |
paths: "./results/*.tap" | |
if: always() | |
install-chart: | |
name: install-chart | |
runs-on: ubuntu-20.04 | |
needs: | |
- kubeconform | |
strategy: | |
matrix: | |
k8s: | |
- v1.23.13 | |
- v1.24.7 | |
- v1.25.3 | |
- v1.26.2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.11.1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
check-latest: true | |
- 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 "changed=true" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.list-changed.outputs.changed == 'true' | |
with: | |
config: .github/kind-config.yaml | |
node_image: kindest/node:${{ matrix.k8s }} | |
- name: Run chart-testing (install) | |
run: ct install --config .github/ct.yaml |