From bff60e15faf995901e2954182c0a4fc9fdd16d00 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:01:42 +0000 Subject: [PATCH] Update actions/cache action to v4 | datasource | package | from | to | | ----------- | ------------- | ------ | ------ | | github-tags | actions/cache | v3.3.2 | v4.0.0 | --- .github/workflows/backwards-compatibility.yml | 2 +- .github/workflows/benchmarks.yml | 2 +- .github/workflows/coding-standards.yml | 2 +- .github/workflows/composer-json-lint.yml | 2 +- .github/workflows/mutation-tests.yml | 2 +- .github/workflows/phpunit.yml | 4 ++-- .github/workflows/static-analysis.yml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/backwards-compatibility.yml b/.github/workflows/backwards-compatibility.yml index 0b76a259..75538bc2 100644 --- a/.github/workflows/backwards-compatibility.yml +++ b/.github/workflows/backwards-compatibility.yml @@ -29,7 +29,7 @@ jobs: run: echo "composer_cache_dir=$(composer global config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-8.1-bc-break-check-${{ hashFiles('.github/workflows/backwards-compatibility.yml') }}" diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 87a9d0ba..708f7c3c 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -36,7 +36,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 31fe8a57..c8e16375 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -36,7 +36,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/composer-json-lint.yml b/.github/workflows/composer-json-lint.yml index 2d6712ce..bce38142 100644 --- a/.github/workflows/composer-json-lint.yml +++ b/.github/workflows/composer-json-lint.yml @@ -36,7 +36,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/mutation-tests.yml b/.github/workflows/mutation-tests.yml index fb594d33..a2138746 100644 --- a/.github/workflows/mutation-tests.yml +++ b/.github/workflows/mutation-tests.yml @@ -36,7 +36,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index ccd3873b..bbd9a229 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -41,7 +41,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" @@ -97,7 +97,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index fb868f13..5a2b23d1 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -36,7 +36,7 @@ jobs: run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v4.0.0" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"