From 60196d617bdce41bffcf1cc66d4e097240ab0198 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Jun 2026 05:20:17 +0000 Subject: [PATCH 1/2] Initial plan From f44cecf61a97c3d521f8a201394d003af243d6fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Jun 2026 05:22:13 +0000 Subject: [PATCH 2/2] Fix update-php-matrix: remove PHP 8.5 (no stable Docker Hub release yet) --- docker-bake.hcl | 4 ++-- update-php-matrix.mjs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 1510554..7d2063e 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -7,11 +7,11 @@ variable "tagPrefix" { } variable "phpMatrix" { - default = [ "8.2.31", "8.3.31", "8.4.21", "8.5.6" ] + default = [ "8.2.31", "8.3.31", "8.4.21" ] } variable "frankenphpMatrix" { - default = [ "8.2.31", "8.3.31", "8.4.21", "8.5.6" ] + default = [ "8.2.31", "8.3.31", "8.4.21" ] } # Frankenphp diff --git a/update-php-matrix.mjs b/update-php-matrix.mjs index cd4da0b..a148769 100755 --- a/update-php-matrix.mjs +++ b/update-php-matrix.mjs @@ -3,7 +3,7 @@ import fs from 'node:fs/promises'; // Supported PHP major.minor versions -const supportedVersions = ['8.2', '8.3', '8.4', '8.5']; +const supportedVersions = ['8.2', '8.3', '8.4']; // Function to fetch PHP tags from Docker Hub API async function fetchPhpTags(version) {