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"