From 646456b86b54f032c7521dca7ec4382de4f3be9c Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Wed, 22 May 2024 17:59:16 +0900 Subject: [PATCH] Github actions cache version update --- .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 2cd3a18..2aded67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: env: COMPOSER_ROOT_VERSION: dev-master - name: "Restore result cache" - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./tmp key: "result-cache-v1-${{ matrix.php-version }}-${{ github.run_id }}" @@ -24,7 +24,7 @@ jobs: path: src/ configuration: phpstan.neon - name: "Save result cache" - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: always() with: path: ./tmp