From a96a93a2cf97c9f503ff4b6877364e9fdd4176c1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Sep 2025 13:26:13 +0000 Subject: [PATCH 1/2] Initial plan From ad907d221e14e561612c4576aff6f054c0aa4e2a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Sep 2025 13:34:44 +0000 Subject: [PATCH 2/2] Update GitHub Actions to resolve CI build failures - Update actions/checkout from v2 to v4 - Update actions/cache from v2 to v4 (fixes deprecation warning) - Keep shivammathur/setup-php@v2 (already current) This resolves the CI failure: "This request has been automatically failed because it uses a deprecated version of actions/cache: v2" Co-authored-by: lisachenko <640114+lisachenko@users.noreply.github.com> --- .github/workflows/phpunit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index ba2b657..f7d766c 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -23,7 +23,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v2" + uses: "actions/checkout@v4" - name: "Install PHP" uses: "shivammathur/setup-php@v2" @@ -34,7 +34,7 @@ jobs: tools: composer:v2, cs2pr - name: "Cache dependencies" - uses: "actions/cache@v2" + uses: "actions/cache@v4" with: path: | ~/.composer/cache