From 4df3473b3bc3ef219328645c53d8ae7ee30784b7 Mon Sep 17 00:00:00 2001 From: desrosj Date: Tue, 5 Jan 2021 19:23:02 +0000 Subject: [PATCH] Build/Test Tools: Simplify Composer package caching. This simplifies the caching of Composer dependencies in the coding standards and PHP compatibility workflows by using a published action. This combines 3 steps into 1 within these workflows. Because the Composer implementation within the PHPUnit test workflow is a bit specialized (`composer install` is run within the Docker container), caching has been left as is in that workflow. However, the cache key has been changed to include the version of PHP being tested. This will prevent incorrect versions of dependencies being present when they are required on jobs other than PHP 8. Props jrf. See #50401. Built from https://develop.svn.wordpress.org/trunk@49938 git-svn-id: http://core.svn.wordpress.org/trunk@49637 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 2e738ef584..4d17aca681 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49937'; +$wp_version = '5.7-alpha-49938'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.