Skip to content

chore(deps): update ghcr.io/icoretech/codex-pooler docker tag to v0.4.21 #458

chore(deps): update ghcr.io/icoretech/codex-pooler docker tag to v0.4.21

chore(deps): update ghcr.io/icoretech/codex-pooler docker tag to v0.4.21 #458

Workflow file for this run

name: Lint and Test Charts
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v5.0.1
- uses: actions/setup-python@v6
with:
python-version: '3.14'
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.8.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: |
for attempt in 1 2 3; do
if ct lint --target-branch ${{ github.event.repository.default_branch }}; then
exit 0
fi
rc=$?
if [[ "$attempt" -eq 3 ]]; then
exit "$rc"
fi
sleep "$((attempt * 20))"
done
- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/kind-action@v1.14.0
- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: |
for attempt in 1 2 3; do
if ct install --target-branch ${{ github.event.repository.default_branch }}; then
exit 0
fi
rc=$?
if [[ "$attempt" -eq 3 ]]; then
exit "$rc"
fi
sleep "$((attempt * 20))"
done