From 636db0c9a554a7d4a44387e0e870292a030e9d4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 23:03:35 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71f7e17..51c1759 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: composer: 2 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: php-actions/composer@v6 with: From cb80c05c6e0ae5f495a5fdc63b1ad4cda5c68f91 Mon Sep 17 00:00:00 2001 From: Tasuku Yamashita Date: Wed, 28 Jan 2026 14:31:53 +0900 Subject: [PATCH 2/3] chore: pin GitHub Actions with pinact --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51c1759..07668f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: composer: 2 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - uses: php-actions/composer@v6 with: From 43616e27a89a17ddb221e6524e73aa41ece2bfd7 Mon Sep 17 00:00:00 2001 From: Tasuku Yamashita Date: Wed, 28 Jan 2026 12:29:04 +0900 Subject: [PATCH 3/3] ci: use Composer 2.2 for PHP 7.2 matrix entry PHP 7.2 CI was failing because Composer 2.x (latest ~2.8) cannot resolve PHPUnit 6.x dependency correctly, while Composer 2.2 (LTS) can. This aligns PHP 7.2 with PHP 7.0 and 7.1 which already use Composer 2.2. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07668f6..1de9efb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: composer: 2.2 - php: 7.2 phpunit: 6 - composer: 2 + composer: 2.2 steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1