From c69b3f16c51808d4175ea95fc5b653527c86d96d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:14:44 +0000 Subject: [PATCH] chore(deps): bump the gh-actions group with 2 updates Bumps the gh-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 4 to 5 - [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/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/php.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 45326f8..dff4ea5 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -61,7 +61,7 @@ jobs: run: 'echo "::set-output name=path::$(composer global config cache-dir)"' - name: 'Share Composer cache across runs' - uses: 'actions/cache@v4' + uses: 'actions/cache@v5' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ matrix.php }}-${{ hashFiles('**/composer.json') }}" @@ -86,7 +86,7 @@ jobs: env_vars: PHP_VERSION - name: 'Archive code coverage results' - uses: 'actions/upload-artifact@v5' + uses: 'actions/upload-artifact@v6' with: name: 'PHP ${{ matrix.php }}' path: 'clover.xml' @@ -112,7 +112,7 @@ jobs: run: 'echo "::set-output name=path::$(composer global config cache-dir)"' - name: 'Share Composer cache across runs' - uses: 'actions/cache@v4' + uses: 'actions/cache@v5' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-lowest-${{ hashFiles('**/composer.json') }}"