From b23cc83b493d27374fed412681d040f68a7349ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 09:27:00 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 3 updates Bumps the all-actions group with 3 updates in the / directory: [actions/cache](https://github.com/actions/cache), [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) 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 `stefanzweifel/git-auto-commit-action` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v7.0.0...v7.1.0) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd25623..428d98c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: extensions: ${{ env.PHP_EXTENSIONS }} key: php-ext-cache-v1 - name: Cache PHP extensions - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.extcache.outputs.dir }} key: ${{ steps.extcache.outputs.key }} @@ -75,7 +75,7 @@ jobs: - name: Set Composer Cache Directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{steps.composer-cache.outputs.dir}} key: composer-${{hashFiles('**/composer.lock', '**/composer.patches.json')}} @@ -88,7 +88,7 @@ jobs: - name: Run PHPCBF continue-on-error: true run: composer phpcbf web/modules/custom web/themes/custom web/profiles - - uses: stefanzweifel/git-auto-commit-action@v7.0.0 + - uses: stefanzweifel/git-auto-commit-action@v7.1.0 with: commit_message: Auto-commit phpcbf changes - name: Run PHPCS @@ -125,7 +125,7 @@ jobs: SIMPLETEST_BASE_URL: 'http://127.0.0.1:8888' PHP_CLI_SERVER_WORKERS: 2 - name: Upload archive of test artifacts - uses: actions/upload-artifact@v5.0.0 + uses: actions/upload-artifact@v6.0.0 if: always() with: name: artifacts