From b1d08c1b00f5a5018ceec82554ba58aaf3051b73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 21:06:16 +0000 Subject: [PATCH 1/3] Bump actions/github-script from 8 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index 6193b0f..b28eb21 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -31,7 +31,7 @@ jobs: number: "${{ github.event.workflow_run.pull_requests[0].number }}" - name: "Merge pull request" - uses: "actions/github-script@v8" + uses: "actions/github-script@v9" with: github-token: "${{ secrets.GITHUB_TOKEN }}" script: | From e5ff9de9c98e044b24d8f50786cbf4ce1e9b1be4 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Mon, 4 May 2026 07:21:49 +0000 Subject: [PATCH 2/3] Fix test workflow to use typisttech/php-matrix-action@v1 Agent-Logs-Url: https://github.com/impresscms-dev/generate-phpdocs-with-clean-phpdoc-md-action/sessions/a7c354b4-eeb4-43cf-b6ec-bbd578d57e54 Co-authored-by: MekDrop <342641+MekDrop@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2aa3a1c..edac675 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: - name: Generating PHP matrix... id: php-matrix - uses: typisttech/php-matrix-action@v2 + uses: typisttech/php-matrix-action@v1 with: composer-json: composer.php-matrix.json source: php.net From 0e365cddd2737a9f619d68497155ed95ee5c044c Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Mon, 4 May 2026 07:28:26 +0000 Subject: [PATCH 3/3] Fix test workflow checkout and matrix fallback Co-authored-by: MekDrop <342641+MekDrop@users.noreply.github.com> --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edac675..077dae1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkouting code... - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: sparse-checkout: composer.json sparse-checkout-cone-mode: false @@ -36,7 +36,10 @@ jobs: run: | package_constraint=$(php -r 'echo json_decode(file_get_contents("composer.json"), true)["require"]["clean/phpdoc-md"];') php_constraint=$(composer show clean/phpdoc-md "$package_constraint" --all --format=json | php -r '$pkg = json_decode(stream_get_contents(STDIN), true); echo $pkg["requires"]["php"];') - php -r 'file_put_contents("composer.php-matrix.json", json_encode(["require" => ["php" => $argv[1]]], JSON_UNESCAPED_SLASHES));' "$php_constraint" + php -r 'file_put_contents("composer.php-matrix.json", json_encode(["require" => ["php" => $argv[1]]], JSON_UNESCAPED_SLASHES));' "${php_constraint}" 2>/dev/null + if [ ! -s composer.php-matrix.json ]; then + php -r 'file_put_contents("composer.php-matrix.json", json_encode(["require" => ["php" => "^8" ]], JSON_UNESCAPED_SLASHES));' + fi - name: Generating PHP matrix... id: php-matrix @@ -58,7 +61,7 @@ jobs: steps: - name: Checkouting code... - uses: actions/checkout@v6 + uses: actions/checkout@v4 - name: Detecting Composer major... id: composer-major