diff --git a/src/readme.html b/src/readme.html
index a40c5e98a9..4c76fd4c17 100644
--- a/src/readme.html
+++ b/src/readme.html
@@ -58,7 +58,7 @@
Recommendations
- PHP version 7.4 or greater.
- - MySQL version 5.7 or greater OR MariaDB version 10.4 or greater.
+ - MySQL version 8.0 or greater OR MariaDB version 10.4 or greater.
- The mod_rewrite Apache module.
- HTTPS support.
- A link to wordpress.org on your site.
diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php
index b73e1e78a0..39b4d0ad56 100644
--- a/src/wp-admin/includes/class-wp-site-health.php
+++ b/src/wp-admin/includes/class-wp-site-health.php
@@ -17,7 +17,7 @@ class WP_Site_Health {
public $is_mariadb = false;
private $mysql_server_version = '';
private $mysql_required_version = '5.5';
- private $mysql_recommended_version = '5.7';
+ private $mysql_recommended_version = '8.0';
private $mariadb_recommended_version = '10.4';
public $php_memory_limit;
diff --git a/tests/phpunit/tests/readme.php b/tests/phpunit/tests/readme.php
index f0068d821e..7ec762b665 100644
--- a/tests/phpunit/tests/readme.php
+++ b/tests/phpunit/tests/readme.php
@@ -48,11 +48,11 @@ class Tests_Readme extends WP_UnitTestCase {
/*
* Per https://www.mysql.com/support/, Oracle actively supports MySQL releases for 5 years from GA release.
*
- * The currently recommended MySQL 5.7 branch moved from active support to extended support on 2020-10-21.
- * As WordPress core is not fully compatible with MySQL 8.0 at this time, the "supported" period here
+ * The currently recommended MySQL 8.0 branch moved from active support to extended support on 2023-04-19.
+ * As WordPress core may not be fully compatible with MySQL 8.1 at this time, the "supported" period here
* is increased to 8 years to include extended support.
*
- * TODO: Reduce this back to 5 years once MySQL 8.0 compatibility is achieved.
+ * TODO: Reduce this back to 5 years once MySQL 8.1 compatibility is achieved.
*/
$mysql_eol = gmdate( 'Y-m-d', strtotime( $mysql_matches[1] . ' +8 years' ) );
$current_date = gmdate( 'Y-m-d' );