From 1a573e1bfc50b9d3701673c3ff3116eab4c3a653 Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 8 Sep 2022 23:41:14 +0000 Subject: [PATCH] Build/Test Tools: Use the default `GITHUB_TOKEN` instead of a personal access token. Previously, it was not possible to use the default `GITHUB_TOKEN` token to create new workflow runs in an effort to prevent accidental recursive workflows. This has changed, and the `workflow_dispatch` is now one of two exceptions to this rule. Using `GITHUB_TOKEN` is preferred whenever possible to avoid the need for a PAT (personal access token), which expires (when created using the recommended security best practices), and is tied to an individual user. See https://github.blog/changelog/2022-09-08-github-actions-use-github_token-with-workflow_dispatch-and-repository_dispatch/. See #55652. Built from https://develop.svn.wordpress.org/trunk@54108 git-svn-id: http://core.svn.wordpress.org/trunk@53667 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 e7333c0e73..925626f627 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54107'; +$wp_version = '6.1-alpha-54108'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.