From a2a326b7cc66dcafe289c36cd48d5aeb98a43d7c Mon Sep 17 00:00:00 2001 From: desrosj Date: Tue, 2 Mar 2021 16:11:04 +0000 Subject: [PATCH] Build/Test Tools: Pin the `welcome-action` to a specific commit SHA. Some GitHub Action scripts require additional permissions to perform the desired operations. This permission is usually given by passing a personal access token (PAT) to the action as an input. Because PATs grant access to sensitive information about the repository and actions with PATs become trusted actors, 3rd party actions should not be installed by specifying a major or minor version. Instead, specifying a full length commit SHA will use the 3rd party action as an immutable release, ensuring the workflows within the repository are not affected by upstream security problems should they occur. Props johnbillion. See #52625. Built from https://develop.svn.wordpress.org/trunk@50474 git-svn-id: http://core.svn.wordpress.org/trunk@50085 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 afe93e628c..574936d8cc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50473'; +$wp_version = '5.8-alpha-50474'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.