From ecf275f1c35f501888e7e21b996f7c20e5bc4869 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 22 Sep 2023 13:57:18 +0000 Subject: [PATCH] Build/Test Tools: Update the environment variable for skipping browser binaries. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This changes the environment variable used in GitHub Action workflows to skip downloading the browser binary that’s a peer dependency when it’s not needed. In [56647], the version of `puppeteer` peer-dependency was bumped to `>= 20.0.0`. Starting in version `20.0.0`, puppeteer switched to using Chrome for testing instead of Chromium. With this release, the `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` environment variable was removed in favor of the more generic `PUPPETEER_SKIP_DOWNLOAD`. All workflows that do not need a browser binary now contain the correct `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` variable. Follow up to [56647]. See #58863. Built from https://develop.svn.wordpress.org/trunk@56659 git-svn-id: http://core.svn.wordpress.org/trunk@56171 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 21000286f0..346054b2de 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56658'; +$wp_version = '6.4-alpha-56659'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.