From 788e1a6335d86f30aa480462eed3b90a1a5b487a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:41:00 +0000 Subject: [PATCH] Update actions/cache action to v4 | datasource | package | from | to | | ----------- | ------------- | ---- | -- | | github-tags | actions/cache | v3 | v4 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/format_php.yml | 4 ++-- .github/workflows/psalm.yml | 4 ++-- .github/workflows/validator.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/format_php.yml b/.github/workflows/format_php.yml index b00550c..460dd05 100644 --- a/.github/workflows/format_php.yml +++ b/.github/workflows/format_php.yml @@ -30,7 +30,7 @@ jobs: echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT - name: Retrieve Composer‘s cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.composer_dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} @@ -41,7 +41,7 @@ jobs: run: "composer install --no-interaction --no-progress --no-scripts" - name: Retrieve PHPCS‘s cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache/phpcs key: ${{ runner.os }}-phpcs-${{ hashFiles('phpcs.xml') }} diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 6a7418b..3fc4ded 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -33,7 +33,7 @@ jobs: echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT - name: Retrieve Composer‘s cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.composer_dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -46,7 +46,7 @@ jobs: # the way cache keys are set up will always cause a cache miss # but will restore the cache generated during the previous run based on partial match - name: Retrieve Psalm’s cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./cache/psalm key: ${{ runner.os }}-psalm-cache-${{ hashFiles('psalm.xml', 'psalm-baseline.xml') }} diff --git a/.github/workflows/validator.yml b/.github/workflows/validator.yml index 6df3cb6..b853989 100644 --- a/.github/workflows/validator.yml +++ b/.github/workflows/validator.yml @@ -29,7 +29,7 @@ jobs: echo "composer_dir={$(composer config cache-files-dir)}" >> $GITHUB_OUTPUT - name: Retrieve Composer‘s cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.composer_dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}