From 5c5951bbae6e858f9a60bb9288b13aa841d08772 Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:31:37 -0600 Subject: [PATCH 1/3] Update default PHP version to 8.4 in GitHub Action --- .github/actions/setup-php/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-php/action.yml b/.github/actions/setup-php/action.yml index d5d84cf..ee8b3e8 100644 --- a/.github/actions/setup-php/action.yml +++ b/.github/actions/setup-php/action.yml @@ -6,8 +6,8 @@ inputs: php-version: required: false type: string - description: the php version to use, defaults to 8.3 - default: '8.3' + description: the php version to use, defaults to 8.4 + default: '8.4' runs: using: composite From bddfa6f52fd6795d2a7c8e793d195a82252234ac Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:31:47 -0600 Subject: [PATCH 2/3] Update CI to use PHP 8.4/8.5 and actions/checkout@v6 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cea168a..11c95a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,13 @@ jobs: strategy: matrix: include: - - php-version: 8.3 - php-version: 8.4 + - php-version: 8.5 steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: PHP uses: ./.github/actions/setup-php with: @@ -34,12 +34,12 @@ jobs: strategy: matrix: include: - - php-version: 8.3 - php-version: 8.4 + - php-version: 8.5 steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: PHP uses: ./.github/actions/setup-php with: From 8f305e3154c2b4463fcacf5049719474f30e4e32 Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:31:56 -0600 Subject: [PATCH 3/3] Bump PHP requirement to ^8.4 in composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 66d3ddd..888a2d1 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ { "name": "Christopher Davis", "email": "chris@pmg.com" } ], "require": { - "php": "^8.3", + "php": "^8.4", "psr/log": "^1.0 || ^2.0 || ^3.0", "guzzlehttp/promises": "^2.0.3"