From 129ede0d0f3fe96bdb62a19a020386b38c391c35 Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:01:35 -0600 Subject: [PATCH 1/5] 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 9dbbbe2..08ede31 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", "pmg/queue": "^6.2", "pda/pheanstalk": "^4.0" }, From 57183212240f4a8a42c6353cc17401404e0cc73e Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:01:41 -0600 Subject: [PATCH 2/5] Add PHP 8.5 to CI matrix and update checkout action to v6 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9900b49..9a2465f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,11 @@ jobs: include: - php-version: 8.3 - php-version: 8.4 + - php-version: 8.5 steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: start beanstalkd run: docker compose up -d - name: PHP @@ -37,10 +38,11 @@ jobs: include: - php-version: 8.3 - php-version: 8.4 + - php-version: 8.5 steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: start beanstalkd run: docker compose up -d - name: PHP From 77da2a1437e4ad262ae8e04e224150a2aad39ddb Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:02:22 -0600 Subject: [PATCH 3/5] Update default PHP version to 8.5 in GitHub Actions configuration --- .github/actions/setup-php/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-php/action.yml b/.github/actions/setup-php/action.yml index c928269..e506a57 100644 --- a/.github/actions/setup-php/action.yml +++ b/.github/actions/setup-php/action.yml @@ -7,7 +7,7 @@ inputs: required: false type: string description: the php version to use, defaults to 8.4 - default: '8.4' + default: '8.5' runs: using: composite From 2a7c573b70bd18c155541b1deb611be4dc322ac7 Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:03:47 -0600 Subject: [PATCH 4/5] Remove PHP 8.3 from GitHub Actions CI matrix --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a2465f..b96d29c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,6 @@ jobs: strategy: matrix: include: - - php-version: 8.3 - php-version: 8.4 - php-version: 8.5 @@ -36,7 +35,6 @@ jobs: strategy: matrix: include: - - php-version: 8.3 - php-version: 8.4 - php-version: 8.5 From a6452300347765185be7c920a54c6c000e034a58 Mon Sep 17 00:00:00 2001 From: jayrughani9 <108751272+jrughani9@users.noreply.github.com> Date: Wed, 3 Dec 2025 11:08:47 -0600 Subject: [PATCH 5/5] Update default PHP version to 8.5 in setup-php action configuration --- .github/actions/setup-php/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-php/action.yml b/.github/actions/setup-php/action.yml index e506a57..538ec2a 100644 --- a/.github/actions/setup-php/action.yml +++ b/.github/actions/setup-php/action.yml @@ -6,7 +6,7 @@ inputs: php-version: required: false type: string - description: the php version to use, defaults to 8.4 + description: the php version to use, defaults to 8.5 default: '8.5' runs: