From 813fb756aecb985d0d96477ffb310d6f77c88ab4 Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 29 Oct 2020 01:22:04 +0000 Subject: [PATCH] Build/Test Tools: Use `install-changed` to install NPM dependencies in GitHub Action workflows. The `install-changed` package records a hash of the `package.json` file locally in a text file and only runs `npm install` when there are changes to account for. This builds on [47497], which only hashes the `package.json` file after a Grunt task is called. By using `npx install-changed` within the workflow files, the package is hashed before the first Grunt task is run. Props ocean90. See #50401, #49594. Built from https://develop.svn.wordpress.org/trunk@49369 git-svn-id: http://core.svn.wordpress.org/trunk@49128 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 b02e0bf3ef..b692bf5b04 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta2-49368'; +$wp_version = '5.6-beta2-49369'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.