Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions scripts/conf/php-versions-base-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,36 +42,36 @@ php_versions:
# - 8.1.34 # Pull latest from Official PHP source
- minor: "8.2"
base_os:
- name: alpine3.22
- name: alpine3.23
- name: alpine3.24
- name: bookworm
- name: trixie
patch_versions:
# - 8.2.30 # Pull latest from Official PHP source
# - 8.2.32 # Pull latest from Official PHP source
- minor: "8.3"
base_os:
- name: alpine3.22
- name: alpine3.23
- name: alpine3.24
- name: bookworm
- name: trixie
patch_versions:
# - 8.3.29 # Pull latest from Official PHP source
# - 8.3.32 # Pull latest from Official PHP source
- minor: "8.4"
base_os:
- name: alpine3.22
- name: alpine3.23
- name: alpine3.24
- name: bookworm
- name: trixie
patch_versions:
# - 8.4.16 # Pull latest from Official PHP source
# - 8.4.23 # Pull latest from Official PHP source
- minor: "8.5"
base_os:
- name: alpine3.22
- name: alpine3.23
- name: alpine3.24
- name: bookworm
- name: trixie
patch_versions:
# - 8.5.1 # Pull latest from Official PHP source
# - 8.5.8 # Pull latest from Official PHP source

operating_systems:
- family: alpine
Expand Down Expand Up @@ -108,6 +108,10 @@ operating_systems:
version: alpine3.23
number: 3.23
nginx_version: 1.30.1-r1
- name: "Alpine 3.24"
version: alpine3.24
number: 3.24
nginx_version: 1.30.3-r1
- family: debian
default: true
versions:
Expand Down
2 changes: 1 addition & 1 deletion scripts/get-php-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function echo_color_message (){
if [ "$SKIP_DOWNLOAD" = false ]; then
echo_color_message yellow "⚡️ Getting PHP Versions from $PHP_VERSIONS_ACTIVE_JSON_FEED"
# Fetch the JSON from the PHP website
php_net_version_json=$(curl -s $PHP_VERSIONS_ACTIVE_JSON_FEED)
php_net_version_json=$(curl -sS --fail --retry 5 --retry-all-errors --max-time 15 "$PHP_VERSIONS_ACTIVE_JSON_FEED")

# Parse the fetched JSON data and optionally validate PHP versions on DockerHub
if [ "$SKIP_DOCKERHUB_VALIDATION" = true ]; then
Expand Down
Loading