Github action cache path change

This commit is contained in:
2024-05-22 17:43:14 +09:00
parent 773f40e2d1
commit d5bf24c8cf

View File

@@ -14,7 +14,7 @@ jobs:
- name: "Restore result cache"
uses: actions/cache/restore@v3
with:
path: ./tmp
path: /tmp
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
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