From 8ae865f9b5b2cffd7810ddb58d1f71e6920150bb Mon Sep 17 00:00:00 2001 From: Joe Corall Date: Thu, 14 Nov 2024 04:00:44 -0500 Subject: [PATCH] bump drupal core+drush test versions --- drupal/tests/ServiceStartsWithBackendMySQL/test.sh | 4 ++-- drupal/tests/ServiceStartsWithBackendPostgreSQL/test.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drupal/tests/ServiceStartsWithBackendMySQL/test.sh b/drupal/tests/ServiceStartsWithBackendMySQL/test.sh index b81e0255..762b02e8 100755 --- a/drupal/tests/ServiceStartsWithBackendMySQL/test.sh +++ b/drupal/tests/ServiceStartsWithBackendMySQL/test.sh @@ -7,7 +7,7 @@ source /usr/local/share/isle/utilities.sh # Install basic Drupal cd /var/www/drupal || exit 1 rm -fr /var/www/drupal/* -composer create-project drupal/recommended-project:^10.1.2 \ +composer create-project drupal/recommended-project:^10.3 \ --prefer-dist \ --no-interaction \ --stability stable \ @@ -15,7 +15,7 @@ composer create-project drupal/recommended-project:^10.1.2 \ -- /var/www/drupal # Install Drush. -composer require drush/drush:^12.1.3 +composer require drush/drush:^13.3 # Install actual site. # shellcheck disable=SC1091 diff --git a/drupal/tests/ServiceStartsWithBackendPostgreSQL/test.sh b/drupal/tests/ServiceStartsWithBackendPostgreSQL/test.sh index 5f64bb2a..58bbe239 100755 --- a/drupal/tests/ServiceStartsWithBackendPostgreSQL/test.sh +++ b/drupal/tests/ServiceStartsWithBackendPostgreSQL/test.sh @@ -7,7 +7,7 @@ source /usr/local/share/isle/utilities.sh # Install basic Drupal cd /var/www/drupal || exit 1 rm -fr /var/www/drupal/* -composer create-project drupal/recommended-project:^10.1.2 \ +composer create-project drupal/recommended-project:^10.3 \ --prefer-dist \ --no-interaction \ --stability stable \ @@ -15,7 +15,7 @@ composer create-project drupal/recommended-project:^10.1.2 \ -- /var/www/drupal # Install Drush. -composer require drush/drush:^12.1.3 +composer require drush/drush:^13.3 # Install actual site. # shellcheck disable=SC1091