chore(deps): bump the baseimages group across 1 directory with 2 updates #688
Workflow file for this run
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: Test | |
on: | |
pull_request: | |
jobs: | |
pre-commit: | |
uses: radiorabe/actions/.github/workflows/[email protected] | |
python-poetry: | |
uses: radiorabe/actions/.github/workflows/[email protected] | |
with: | |
version: '3.11' | |
helm-chart: | |
name: Test Helm Chart | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build dev image | |
run: | | |
docker build -t ghcr.io/radiorabe/acrloader:latest -f Dockerfile . | |
docker save -o /tmp/acrloader.tar ghcr.io/radiorabe/acrloader:latest | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct --config=.github/ct.yaml list-changed) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: ct --config=.github/ct.yaml lint | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Load dev image | |
run: | | |
kind load image-archive /tmp/acrloader.tar --name chart-testing | |
- name: Run chart-testing (install) | |
run: ct --config=.github/ct.yaml install |