From 99ad5c69105bcfba7c786a0efe092d7b88f2bdcd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 14:35:05 +0000 Subject: [PATCH] build(deps): bump the github-actions-dependencies group across 1 directory with 2 updates Bumps the github-actions-dependencies group with 2 updates in the /.github/workflows/actions/setup-php directory: [actions/cache](https://github.com/actions/cache) and [shivammathur/setup-php](https://github.com/shivammathur/setup-php). Updates `actions/cache` from 4.2.3 to 5.0.1 - [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/5a3ec84eff668545956fd18022155c47e93e2684...9255dc7a253b0ccc959486e2bca901246202afeb) Updates `shivammathur/setup-php` from 2.33.0 to 2.36.0 - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](https://github.com/shivammathur/setup-php/compare/cf4cade2721270509d5b1c766ab3549210a39a2a...44454db4f0199b8b9685a5d763dc37cbf79108e1) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: shivammathur/setup-php dependency-version: 2.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/actions/setup-php/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/setup-php/action.yml b/.github/workflows/actions/setup-php/action.yml index 03f6824..2282ed7 100644 --- a/.github/workflows/actions/setup-php/action.yml +++ b/.github/workflows/actions/setup-php/action.yml @@ -10,7 +10,7 @@ runs: using: "composite" steps: - name: ⚙️ Setup PHP, with composer and extensions - uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # 2.33.0 + uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0 with: php-version: ${{ inputs.php-version }} extensions: none,iconv,dom,curl,mbstring,tokenizer,xml,xmlwriter,simplexml,ctype @@ -22,7 +22,7 @@ runs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: ♻️ Cache composer dependencies - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ inputs.php-versions }}-${{ hashFiles('**/composer.json') }}