Update postgresql Docker tag to v18 #898
This file contains hidden or 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: "Lint and Test Chart" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| linter-artifacthub: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: public.ecr.aws/artifacthub/ah:v1.22.0 | |
| options: --user 1001 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run ah lint | |
| working-directory: ./charts | |
| run: ah lint | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v5 | |
| - name: Set up python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Setup Chart Linting | |
| id: lint | |
| uses: helm/chart-testing-action@v2.8.0 | |
| - name: List changed charts | |
| id: list-changed | |
| run: | | |
| changed=$(ct --config ./.github/configs/ct-lint.yaml list-changed) | |
| charts=$(echo "$changed" | tr '\n' ' ' | xargs) | |
| if [[ -n "$changed" ]]; then | |
| echo "changed=true" >> $GITHUB_OUTPUT | |
| echo "changed_charts=$charts" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Run chart-testing (lint) | |
| run: ct lint --debug --config ./.github/configs/ct-lint.yaml --lint-conf ./.github/configs/lintconf.yaml | |
| - name: Run docs-testing (helm-docs) | |
| id: helm-docs | |
| run: | | |
| ./scripts/helm-docs.sh | |
| if [[ $(git diff --stat) != '' ]]; then | |
| echo -e '\033[0;31mDocumentation outdated!\033[0m ❌' | |
| git diff --color | |
| exit 1 | |
| else | |
| echo -e '\033[0;32mDocumentation up to date\033[0m ✔' | |
| fi | |
| - name: Create kind cluster | |
| uses: helm/kind-action@v1.14.0 | |
| if: steps.list-changed.outputs.changed == 'true' | |
| - name: Run chart-testing (install) | |
| run: | | |
| namespace=authentik-$(uuidgen) | |
| kubectl create ns $namespace | |
| kubectl apply -n $namespace -f charts/authentik/ci/manifests/ | |
| ct install --namespace=$namespace --config ./.github/configs/ct-install.yaml | |
| if: steps.list-changed.outputs.changed == 'true' |