From 739f0b32ba0ff2a928f81d423c96c2e3b4299d22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 20:14:35 +0000 Subject: [PATCH] github-actions(deps): Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/code-coverage.yaml | 2 +- .github/workflows/coding-standards.yaml | 4 ++-- .github/workflows/rector.yaml | 2 +- .github/workflows/static-analysis.yaml | 4 ++-- .github/workflows/tests.yaml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code-coverage.yaml b/.github/workflows/code-coverage.yaml index a3ff6beeb7..ae6386bbf2 100644 --- a/.github/workflows/code-coverage.yaml +++ b/.github/workflows/code-coverage.yaml @@ -34,7 +34,7 @@ jobs: run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composer-cache.outputs.directory }}" key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}" diff --git a/.github/workflows/coding-standards.yaml b/.github/workflows/coding-standards.yaml index 8e18e23131..6c1c9dae0e 100644 --- a/.github/workflows/coding-standards.yaml +++ b/.github/workflows/coding-standards.yaml @@ -34,7 +34,7 @@ jobs: run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composer-cache.outputs.directory }}" key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}" @@ -48,7 +48,7 @@ jobs: composer bin php-cs-fixer install --ansi --no-interaction --no-progress --optimize-autoloader - name: "Cache cache file for php-cs-fixer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: ".build/php-cs-fixer/" key: "php-cs-fixer-${{ matrix.php-version }}-${{ github.ref_name }}" diff --git a/.github/workflows/rector.yaml b/.github/workflows/rector.yaml index 647eb4a64c..5beb44d326 100644 --- a/.github/workflows/rector.yaml +++ b/.github/workflows/rector.yaml @@ -34,7 +34,7 @@ jobs: run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composer-cache.outputs.directory }}" key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}" diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml index a698d48840..fb34d317e7 100644 --- a/.github/workflows/static-analysis.yaml +++ b/.github/workflows/static-analysis.yaml @@ -33,7 +33,7 @@ jobs: run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composer-cache.outputs.directory }}" key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}" @@ -75,7 +75,7 @@ jobs: run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composer-cache.outputs.directory }}" key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}" diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c60da6509e..d0520cbabd 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -45,7 +45,7 @@ jobs: run: "echo \"directory=$(composer config cache-dir)\" >> $GITHUB_OUTPUT" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3" + uses: "actions/cache@v4" with: path: "${{ steps.composer-cache.outputs.directory }}" key: "composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}"