Bump acp version to 2.22.0 #372
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: kube-acp-stack chart test | |
on: | |
push: | |
tags-ignore: | |
- "*" | |
branches: | |
- 'release/**' | |
paths: | |
- 'charts/kube-acp-stack/Chart.yaml' | |
- 'charts/acp/Chart.yaml' | |
pull_request: | |
paths: | |
- 'charts/kube-acp-stack/**' | |
- 'charts/acp/**' | |
- 'tests/**' | |
env: | |
CHART: kube-acp-stack | |
jobs: | |
lint: | |
name: Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Helm lint | |
run: make helm-lint | |
- name: Kubeeval lint | |
run: make lint-kubeeval | |
acp-dependency-version: | |
name: Check acp dependency version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Compare acp chart dependency version | |
run: make check-acp-charts-version |