feat: add cache
Some checks failed
renovate / renovate (push) Has been cancelled

This commit is contained in:
2026-03-15 00:39:04 -05:00
parent 79b301e4ef
commit e00766e4b0

View File

@@ -260,6 +260,17 @@ jobs:
token: ${{ secrets.GITEA_TOKEN }} token: ${{ secrets.GITEA_TOKEN }}
version: v3.19.2 version: v3.19.2
- name: Cache Helm Dependencies
if: steps.branch-exists.outputs.exists == 'true'
uses: actions/cache@v5
with:
path: |
~/.cache/helm
~/.config/helm
key: helm-cache-${{ runner.os }}-${{ hashFiles('infrastructure/clusters/cl01tl/helm/**/Chart.yaml', 'infrastructure/clusters/cl01tl/helm/**/Chart.lock') }}
restore-keys: |
helm-cache-${{ runner.os }}-
- name: Add Repositories - name: Add Repositories
env: env:
CHANGED_CHARTS: ${{ needs.lint-helm.outputs.chart-dir }} CHANGED_CHARTS: ${{ needs.lint-helm.outputs.chart-dir }}