From 72a2ab5207794c59b3bf80088b1fb8fd6bdd8a4e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:07:35 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/release.yml | 2 +- .github/workflows/validate.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 980b424..4e41929 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: id: "composercache" run: "echo '::set-output name=dir::$(composer config cache-files-dir)'" - name: "Cache composer dependencies" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composercache.outputs.dir }}" key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index dac62ba..1150d06 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -22,7 +22,7 @@ jobs: id: "composercache" run: "echo '::set-output name=dir::$(composer config cache-files-dir)'" - name: "Cache composer dependencies" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composercache.outputs.dir }}" key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}"