From c6c70990f255b15febb59263d773f1dc1ec68b06 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Wed, 18 Jun 2025 12:13:14 +0200 Subject: [PATCH] cache compose tests --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 633cb306ee..9529d09f65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,9 +33,15 @@ jobs: - uses: depot/setup-action@v1 with: oidc: true + - name: Save Run Caches + uses: actions/cache@v4 + with: + path: | + ${{ runner.temp }}/zitadel-make-cache - run: make login-quality env: # latest if branch is main, otherwise image version which is the pull request number BUILDX_CLI: depot --file docker-bake.hcl --file docker-bake-ci.hcl DEPOT_PROJECT_ID: jp837jn3fm REF_TAG: ${{ github.ref == 'refs/heads/main' && 'latest' || fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} + CACHE_DIR: ${{ runner.temp }}/zitadel-make-cache