From d6c6771ad96db1d41353e7b688916cfb5724af99 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sat, 11 Apr 2026 21:08:03 -0500 Subject: [PATCH] ci: update cache restore --- .gitea/workflows/lint-test-helm.yaml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/lint-test-helm.yaml b/.gitea/workflows/lint-test-helm.yaml index e2a3c7453..a2a4c0363 100644 --- a/.gitea/workflows/lint-test-helm.yaml +++ b/.gitea/workflows/lint-test-helm.yaml @@ -242,6 +242,8 @@ jobs: with: path: /usr/local/bin/kubeconform key: ${{ runner.os }}-kubeconform-${{ env.KUBECONFORM_VERSION }} + restore-keys: | + ${{ runner.os }}-kubeconform- - name: Install Kubeconform if: steps.cache-kubeconform.outputs.cache-hit != 'true' @@ -396,6 +398,15 @@ jobs: path: /usr/local/bin/argocd key: ${{ runner.os }}-argocd-${{ env.ARGOCD_VERSION }} + - name: Cache ArgoCD CLI + id: cache-argocd + uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 + with: + path: /usr/local/bin/argocd + key: ${{ runner.os }}-argocd-${{ env.ARGOCD_VERSION }} + restore-keys: | + ${{ runner.os }}-argocd- + - name: Install ArgoCD CLI if: steps.cache-argocd.outputs.cache-hit != 'true' run: | @@ -481,7 +492,7 @@ jobs: helm dependency build "${CHART_PATH}" --skip-refresh - local NAMESPACE="${APP_NAME}" + NAMESPACE="${APP_NAME}" case "${APP_NAME}" in "stack") NAMESPACE="argocd"