From bdd61d32949b718aa3843ea5b342738242cd5966 Mon Sep 17 00:00:00 2001 From: kylekatarnls Date: Mon, 22 Jan 2024 08:01:18 +0100 Subject: [PATCH] Upgrade actions/cache to v4 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9008c43985..5d4d6c3b9b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -131,7 +131,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" > $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache-ubuntu.outputs.dir }} key: "php-${{ matrix.php }}-${{ matrix.setup }}-ubuntu-${{ hashFiles('**/composer.json') }}" @@ -250,7 +250,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" > $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache-windows.outputs.dir }} key: "php-${{ matrix.php }}-${{ matrix.setup }}-windows-${{ hashFiles('**/composer.json') }}"