From 0c23324b4601f27d398b48005d5eb53e77c25480 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Fri, 14 Jun 2024 14:22:53 -0400 Subject: [PATCH] Update minimum composer version Use Composer 2.7.7, and 2.2.24 for CI runs with old PHP versions. --- .github/actions/tool-setup/action.yml | 2 +- .github/versions.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/tool-setup/action.yml b/.github/actions/tool-setup/action.yml index 03e54dd70465d..86402e50cfc3b 100644 --- a/.github/actions/tool-setup/action.yml +++ b/.github/actions/tool-setup/action.yml @@ -20,7 +20,7 @@ runs: if [[ "${INPUT_PHP:-$PHP_VERSION}" == 7.[01] ]]; then printf "Downgrading composer for PHP %s\n\n" "${INPUT_PHP:-$PHP_VERSION}" - COMPOSER_VERSION=2.2.23 + COMPOSER_VERSION=2.2.24 fi printf "\n\e[1mSelected tool versions\e[0m\n" diff --git a/.github/versions.sh b/.github/versions.sh index ebb314ed60e9c..3ed1d71ec4db1 100644 --- a/.github/versions.sh +++ b/.github/versions.sh @@ -1,6 +1,6 @@ # Versions of tools to use in CI. PHP_VERSION=8.2 -COMPOSER_VERSION=2.7.1 +COMPOSER_VERSION=2.7.7 NODE_VERSION=20.8.1 PNPM_VERSION=9.3.0