From 77c434e1302d2517595c6073fe4c8ee957b7d3ee Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 19 May 2021 17:37:59 +0000 Subject: [PATCH] Build/Test Tools: Use the new `concurrency` setting for GitHub Actions. The new `concurrency` setting can be used to ensure only a single workflow run or job is in progress. When used in combination with the `cancel-in-progress` setting, incomplete workflow runs can be cancelled automatically to prevent running workflows unnecessarily. The workflows that take longer to run previously had this built into a step and utilized a 3rd-party action. Now that this is natively supported by GitHub Actions, using that is preferred. This option is currently in beta, but is stable enough to use in our workflows for the time being. Props ocean90. Fixes #53080. Built from https://develop.svn.wordpress.org/trunk@50930 git-svn-id: http://core.svn.wordpress.org/trunk@50539 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 036053b51e..b7496e67ed 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50929'; +$wp_version = '5.8-alpha-50930'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.