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) {