From 72f482798551caabf57866a2e4e6b2a5d9f4f301 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 22 May 2024 17:48:46 +0900 Subject: [PATCH] Github actions tmp cache --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7122b1..414ddc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - name: "Restore result cache" uses: actions/cache/restore@v3 with: - path: /tmp + path: /tmp/phpstan-codeblocks-dotenv key: "result-cache-v1-${{ matrix.php-version }}-${{ github.run_id }}" restore-keys: | result-cache-v1-${{ matrix.php-version }}- @@ -27,7 +27,7 @@ jobs: uses: actions/cache/save@v3 if: always() with: - path: /tmp + path: /tmp/phpstan-codeblocks-dotenv key: "result-cache-v1-${{ matrix.php-version }}-${{ github.run_id }}" # We need to use phpunit from the self install to get the class paths - name: PHPunit Tests