2024-11-11 06:41:59 +00:00
|
|
|
name: Chart
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
chart-testing:
|
|
|
|
runs-on: flakes-action
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-11-11 10:47:00 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-11-11 06:41:59 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Run chart-testing (list-changed)
|
|
|
|
id: list-changed
|
|
|
|
run: |
|
2024-11-11 10:47:00 +00:00
|
|
|
changed=$(ct --config .forgejo/ct.yaml list-changed)
|
2024-11-11 06:41:59 +00:00
|
|
|
if [[ -n "$changed" ]]; then
|
|
|
|
echo "::set-output name=changed::true"
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Run chart-testing (lint)
|
2024-11-11 10:47:00 +00:00
|
|
|
run: ct --config .forgejo/ct.yaml lint
|
2024-11-11 06:41:59 +00:00
|
|
|
|
|
|
|
polaris-audit:
|
|
|
|
runs-on: flakes-action
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-11-11 10:47:00 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-11-11 06:41:59 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 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
|
|
|
|
|
|
|
|
pluto-scan:
|
|
|
|
runs-on: flakes-action
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Use pluto
|
|
|
|
run: |
|
|
|
|
helm template ./charts/well-known -f ./charts/well-known/ci/pluto-values.yaml | pluto detect - --ignore-deprecations
|