From 95828a9077b57cd25fc957179fa5cfd3b5ecbdd2 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 18 Nov 2022 14:52:14 +0000 Subject: [PATCH] Build/Test Tools: Improve how Composer dependencies are installed. To improve how Composer dependencies are installed and managed within GitHub Actions, the `ramsey/composer-install` third-party action is now used consistently throughout all workflows. Previously, some workflows manually ran `composer` commands while others already used `ramsey/composer-install`. The `ramsey/composer-install` action manages caching dependencies across workflow runs internally, which is something that was manually handled before this change. Props jrf, desrosj. Fixes #53841. Built from https://develop.svn.wordpress.org/trunk@54856 git-svn-id: http://core.svn.wordpress.org/trunk@54408 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 419ae90281..ca713b4711 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54855'; +$wp_version = '6.2-alpha-54856'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.