From a62d6a3063b64df0e01458725daff41f8ca062d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 04:54:56 +0000 Subject: [PATCH] github-actions(deps): bump ramsey/composer-install from 3 to 4 Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 3 to 4. - [Release notes](https://github.com/ramsey/composer-install/releases) - [Commits](https://github.com/ramsey/composer-install/compare/v3...v4) --- updated-dependencies: - dependency-name: ramsey/composer-install dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cs.yml | 6 +++--- .github/workflows/security-checker.yml | 2 +- .github/workflows/static-analysis.yml | 2 +- .github/workflows/unit-tests.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cs.yml b/.github/workflows/cs.yml index 568b9f5..1f4dc20 100644 --- a/.github/workflows/cs.yml +++ b/.github/workflows/cs.yml @@ -28,7 +28,7 @@ jobs: - name: "Set up problem matchers for PHP" run: "echo \"::add-matcher::${{ runner.tool_cache }}/php.json\"" - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - name: Run EasyCodingStandard run: vendor/bin/ecs check @@ -55,7 +55,7 @@ jobs: - name: "Set up problem matchers for PHP" run: "echo \"::add-matcher::${{ runner.tool_cache }}/php.json\"" - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - name: Run Rector run: vendor/bin/rector --dry-run @@ -75,7 +75,7 @@ jobs: php-version-file: ".php-version" extensions: intl, ctype, iconv - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - name: Run composer normalize run: composer normalize --no-update-lock --diff --dry-run diff --git a/.github/workflows/security-checker.yml b/.github/workflows/security-checker.yml index 8fa7cd7..3da5fa1 100644 --- a/.github/workflows/security-checker.yml +++ b/.github/workflows/security-checker.yml @@ -10,5 +10,5 @@ jobs: steps: - uses: actions/checkout@v6.0.2 - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - uses: symfonycorp/security-checker-action@v5 diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 5e859fc..4e17911 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -25,7 +25,7 @@ jobs: - name: "Set up problem matchers for PHP" run: "echo \"::add-matcher::${{ runner.tool_cache }}/php.json\"" - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - name: Run PHPStan run: vendor/bin/phpstan diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index cc37468..5d7c4d8 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -32,7 +32,7 @@ jobs: - name: "Set up problem matchers for phpunit/phpunit" run: "echo \"::add-matcher::${{ runner.tool_cache }}/phpunit.json\"" - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - name: Run test suite run: vendor/bin/phpunit @@ -65,7 +65,7 @@ jobs: - name: "Set up problem matchers for phpunit/phpunit" run: "echo \"::add-matcher::${{ runner.tool_cache }}/phpunit.json\"" - - uses: "ramsey/composer-install@v3" + - uses: "ramsey/composer-install@v4" - name: Run test suite run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml