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
|
runs-on: flakes-action
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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)
|
- name: Run chart-testing (list-changed)
|
||||||
id: list-changed
|
id: list-changed
|
||||||
run: |
|
run: |
|
||||||
changed=$(ct --config .github/ct.yaml list-changed)
|
changed=$(ct --config .forgejo/ct.yaml list-changed)
|
||||||
if [[ -n "$changed" ]]; then
|
if [[ -n "$changed" ]]; then
|
||||||
echo "::set-output name=changed::true"
|
echo "::set-output name=changed::true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Run chart-testing (lint)
|
- name: Run chart-testing (lint)
|
||||||
run: ct --config .github/ct.yaml lint
|
run: ct --config .forgejo/ct.yaml lint
|
||||||
|
|
||||||
polaris-audit:
|
polaris-audit:
|
||||||
runs-on: flakes-action
|
runs-on: flakes-action
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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
|
- name: Run audit
|
||||||
run: |
|
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
|
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:
|
with:
|
||||||
fetch-depth: 0
|
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
|
- name: Use pluto
|
||||||
run: |
|
run: |
|
||||||
helm template ./charts/well-known -f ./charts/well-known/ci/pluto-values.yaml | pluto detect - --ignore-deprecations
|
helm template ./charts/well-known -f ./charts/well-known/ci/pluto-values.yaml | pluto detect - --ignore-deprecations
|
||||||
|
|
Loading…
Reference in a new issue