From e3b791ed777fd63a56889712fed47f5b1493ef58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 12:42:31 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5.0.5 to 6.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [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/27d5ce7f107fe9357f9df03efb73ab90386fccae...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- .github/workflows/cloning-dump-test.yml | 2 +- .github/workflows/cloning-run-test.yml | 2 +- .github/workflows/connection-test.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 484a710..4046f15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,14 +33,14 @@ jobs: coverage: xdebug - name: Cache Composer dependencies - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Rector cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: /tmp/rector key: ${{ runner.os }}-rector-${{ hashFiles('composer.lock', 'rector.php') }}-v2 @@ -48,7 +48,7 @@ jobs: - run: mkdir -p /tmp/rector - name: PHPStan cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: /tmp/phpstan key: ${{ runner.os }}-phpstan-${{ hashFiles('composer.lock', 'phpstan.neon') }}-v2 @@ -131,7 +131,7 @@ jobs: - name: Cache SPC downloaded sources id: spc-downloads-cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ./downloads # Key by matrix.output so Linux x86_64 and Linux aarch64 don't share a cache. @@ -152,7 +152,7 @@ jobs: - name: Cache SPC build output id: spc-build-cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ./buildroot key: spc-build-${{ matrix.output }}-php${{ env.PHP_VERSION }}-openssl${{ env.OPENSSL_VERSION }}-gd${{ env.GD_LIBS_SLUG }}-mbregex-cares${{ env.LIBCARES_VERSION }} diff --git a/.github/workflows/cloning-dump-test.yml b/.github/workflows/cloning-dump-test.yml index 9dd7233..030d5c3 100644 --- a/.github/workflows/cloning-dump-test.yml +++ b/.github/workflows/cloning-dump-test.yml @@ -81,7 +81,7 @@ jobs: extensions: pdo_mysql, pdo_pgsql, pdo_sqlite, pdo_sqlsrv, zip - name: Cache Composer dependencies - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} diff --git a/.github/workflows/cloning-run-test.yml b/.github/workflows/cloning-run-test.yml index 2f5909b..09a2c54 100644 --- a/.github/workflows/cloning-run-test.yml +++ b/.github/workflows/cloning-run-test.yml @@ -125,7 +125,7 @@ jobs: extensions: pdo_mysql, pdo_pgsql, pdo_sqlite, pdo_sqlsrv, zip - name: Cache Composer dependencies - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} diff --git a/.github/workflows/connection-test.yml b/.github/workflows/connection-test.yml index f4b9589..340d2a0 100644 --- a/.github/workflows/connection-test.yml +++ b/.github/workflows/connection-test.yml @@ -61,7 +61,7 @@ jobs: extensions: pdo_mysql, pdo_pgsql, pdo_sqlite - name: Cache Composer dependencies - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} @@ -144,7 +144,7 @@ jobs: extensions: pdo_sqlite, sqlsrv, pdo_sqlsrv - name: Cache Composer dependencies - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: ~/.composer/cache key: ${{ runner.os }}-composer-mssql-${{ hashFiles('composer.lock') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0942b8b..3268994 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,7 @@ jobs: run: composer install --no-interaction --prefer-dist --optimize-autoloader - name: Rector Cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: /tmp/rector key: ${{ runner.os }}-rector-${{ hashFiles('composer.lock') }} @@ -35,7 +35,7 @@ jobs: - run: mkdir -p /tmp/rector - name: PHPStan Cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5 with: path: /tmp/phpstan key: ${{ runner.os }}-phpstan-${{ hashFiles('composer.lock') }}