chore(deps): update helm release gotenberg to v1.9.1 #566
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
name: Run pre-commit | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out codebase | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run pre-commit checks | |
uses: pre-commit/[email protected] | |
chart-testing: | |
name: Run chart-testing | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out codebase | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Helm | |
uses: azure/setup-helm@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2 | |
- name: Look for changed charts | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --config tests/ct.yaml) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: ct lint --config tests/ct.yaml | |
# disabled until we can set up proper helm integration tests for the charts | |
#- name: Create kind cluster | |
# uses: helm/kind-action@v1 | |
# if: steps.list-changed.outputs.changed == 'true' | |
#- name: Run chart-testing (install) | |
# run: ct install --config tests/ct.yaml |