Update .forgejo/workflows/chart.yaml
This commit is contained in:
parent
a6b4d19a6e
commit
189805fb67
1 changed files with 4 additions and 34 deletions
|
@ -14,51 +14,29 @@ jobs:
|
|||
runs-on: flakes-action
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v3
|
||||
with:
|
||||
version: v3.7.1
|
||||
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.7
|
||||
|
||||
- name: Set up chart-testing
|
||||
uses: helm/chart-testing-action@v2.3.1
|
||||
|
||||
- name: Run chart-testing (list-changed)
|
||||
id: list-changed
|
||||
run: |
|
||||
changed=$(ct --config .github/ct.yaml list-changed)
|
||||
changed=$(ct --config .forgejo/ct.yaml list-changed)
|
||||
if [[ -n "$changed" ]]; then
|
||||
echo "::set-output name=changed::true"
|
||||
fi
|
||||
|
||||
- name: Run chart-testing (lint)
|
||||
run: ct --config .github/ct.yaml lint
|
||||
run: ct --config .forgejo/ct.yaml lint
|
||||
|
||||
polaris-audit:
|
||||
runs-on: flakes-action
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v3
|
||||
with:
|
||||
version: v3.7.1
|
||||
|
||||
- name: Setup polaris
|
||||
uses: fairwindsops/polaris/.github/actions/setup-polaris@master
|
||||
with:
|
||||
version: 6.0.0
|
||||
|
||||
- name: Run audit
|
||||
run: |
|
||||
polaris audit --helm-chart ./charts/well-known --helm-values ./charts/well-known/values.yaml --format pretty --set-exit-code-on-danger --set-exit-code-below-score 90
|
||||
|
@ -71,14 +49,6 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v3
|
||||
with:
|
||||
version: v3.7.1
|
||||
|
||||
- name: Download Pluto
|
||||
uses: FairwindsOps/pluto/github-action@master
|
||||
|
||||
- name: Use pluto
|
||||
run: |
|
||||
helm template ./charts/well-known -f ./charts/well-known/ci/pluto-values.yaml | pluto detect - --ignore-deprecations
|
||||
|
|
Loading…
Reference in a new issue