diff --git a/wp-admin/includes/class-wp-site-health.php b/wp-admin/includes/class-wp-site-health.php
index 2da611c67f..6d31e72a4f 100644
--- a/wp-admin/includes/class-wp-site-health.php
+++ b/wp-admin/includes/class-wp-site-health.php
@@ -288,7 +288,11 @@ class WP_Site_Health {
 				'<p>%s</p>',
 				__( 'Plugins extend your site&#8217;s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it&#8217;s vital to keep them up to date.' )
 			),
-			'actions'     => '',
+			'actions'     => sprintf(
+				'<p><a href="%1$s">%2$s</a></p>',
+				esc_url( admin_url( 'plugins.php' ) ),
+				__( 'Manage your plugins' )
+			),
 			'test'        => 'plugin_version',
 		);
 
@@ -336,6 +340,12 @@ class WP_Site_Health {
 					$plugins_needs_update
 				)
 			);
+
+			$result['actions'] .= sprintf(
+				'<p><a href="%1$s">%$2s</a></p>',
+				esc_url( admin_url( 'plugins.php?plugin_status=upgrade' ) ),
+				__( 'Update your plugins' )
+			);
 		} else {
 			$result['description'] .= sprintf(
 				'<p>%s</p>',
@@ -375,6 +385,12 @@ class WP_Site_Health {
 					$unused_plugins
 				)
 			);
+
+			$result['actions'] .= sprintf(
+				'<p><a href="%1$s">%2$s</a></p>',
+				esc_url( admin_url( 'plugins.php?plugin_status=inactive' ) ),
+				__( 'Manage inactive plugins' )
+			);
 		}
 
 		return $result;
@@ -402,7 +418,11 @@ class WP_Site_Health {
 				'<p>%s</p>',
 				__( 'Themes add your site&#8217;s look and feel. It&#8217;s important to keep them up to date, to stay consistent with your brand and keep your site secure.' )
 			),
-			'actions'     => '',
+			'actions'     => sprintf(
+				'<p><a href="%1$s">%2$s</a></p>',
+				esc_url( admin_url( 'themes.php' ) ),
+				__( 'Manage your themes' )
+			),
 			'test'        => 'theme_version',
 		);
 
@@ -622,7 +642,7 @@ class WP_Site_Health {
 				__( 'PHP is the programming language we use to build and maintain WordPress. Newer versions of PHP are both faster and more secure, so updating will have a positive effect on your site’s performance.' )
 			),
 			'actions'     => sprintf(
-				'<a class="button button-primary" href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
+				'<p><a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a></p>',
 				esc_url( wp_get_update_php_url() ),
 				__( 'Learn more about updating PHP' ),
 				/* translators: accessibility text */
@@ -705,14 +725,17 @@ class WP_Site_Health {
 			),
 			'description' => sprintf(
 				'<p>%s</p><p>%s</p>',
-				__( 'PHP modules perform most of the tasks on the server that make your site run.' ),
+				__( 'PHP modules perform most of the tasks on the server that make your site run, and any changes to these must be done by your host.' ),
 				sprintf(
 					/* translators: %s: Link to the hosting group page about recommended PHP modules. */
-					__( 'The Hosting team maintains a list of those modules, both recommended and required, in %s.' ),
+					__( 'The WordPress Hosting Team maintains a list of those modules, both recommended and required, in %s.' ),
 					sprintf(
-						'<a href="%s">%s</a>',
-						esc_url( _x( 'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions', 'The address to describe PHP modules and their use.' ) ),
-						__( 'the team handbook' )
+						'<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
+						// translators: Localized team handbook, if one exists.
+						esc_url( __( 'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions' ) ),
+						__( 'the team handbook' ),
+						/* translators: accessibility text */
+						__( '(opens in a new tab)' )
 					)
 				)
 			),
@@ -904,9 +927,15 @@ class WP_Site_Health {
 			),
 			'description' => sprintf(
 				'<p>%s</p>',
-				__( 'The SQL server is the database where WordPress stores all your site’s content and settings' )
+				__( 'The SQL server is a required piece of software for the database WordPress uses to stores all your site’s content and settings.' )
+			),
+			'actions'     => sprintf(
+				'<p><a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a></p>',
+				esc_url( __( 'https://wordpress.org/about/requirements/' ) ),
+				__( 'Read more about what WordPress requires to run.' ),
+				/* translators: accessibility text */
+				__( '(opens in a new tab)' )
 			),
-			'actions'     => '',
 			'test'        => 'sql_server',
 		);
 
@@ -998,7 +1027,7 @@ class WP_Site_Health {
 					'<p>%s</p>',
 					sprintf(
 						/* translators: %s: Version number. */
-						__( 'WordPress&#8217; utf8mb4 support requires MySQL version %s or greater.' ),
+						__( 'WordPress&#8217; utf8mb4 support requires MySQL version %s or greater, Please contact your server administrator.' ),
 						'5.5.3'
 					)
 				);
@@ -1018,7 +1047,7 @@ class WP_Site_Health {
 					'<p>%s</p>',
 					sprintf(
 						/* translators: %s: Version number. */
-						__( 'WordPress&#8217; utf8mb4 support requires MariaDB version %s or greater.' ),
+                        __( 'WordPress&#8217; utf8mb4 support requires MariaDB version %s or greater, Please contact your server administrator.' ),
 						'5.5.0'
 					)
 				);
@@ -1053,7 +1082,7 @@ class WP_Site_Health {
 					'<p>%s</p>',
 					sprintf(
 						/* translators: %1$s: Name of the library, %2$s: Number of version. */
-						__( 'WordPress&#8217; utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer.' ),
+						__( 'WordPress&#8217; utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer, Please contact your server administrator.' ),
 						'mysqlnd',
 						'5.0.9'
 					)
@@ -1069,7 +1098,7 @@ class WP_Site_Health {
 					'<p>%s</p>',
 					sprintf(
 						/* translators: %1$s: Name of the library, %2$s: Number of version. */
-						__( 'WordPress&#8217; utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer.' ),
+						__( 'WordPress&#8217; utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer, Please contact your server administrator.' ),
 						'libmysql',
 						'5.5.3'
 					)
@@ -1124,11 +1153,19 @@ class WP_Site_Health {
 					sprintf(
 						/* translators: %1$s: The IP address WordPress.org resolves to. %2$s: The error returned by the lookup. */
 						__( 'Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s' ),
-						gethostbyname( 'wordpress.org' ),
+						gethostbyname( 'api.wordpress.org' ),
 						$wp_dotorg->get_error_message()
 					)
 				)
 			);
+
+			$result['actions'] = sprintf(
+				'<p><a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a></p>',
+				esc_url( 'https://wordpress.org/support' ),
+				__( 'Get help resolving this issue.' ),
+				/* translators: accessibility text */
+				__( '(opens in a new tab)' )
+			);
 		}
 
 		return $result;
@@ -1159,7 +1196,13 @@ class WP_Site_Health {
 				'<p>%s</p>',
 				__( 'Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.' )
 			),
-			'actions'     => '',
+			'actions'     => sprintf(
+				'<p><a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a></p>',
+				esc_url( 'https://wordpress.org/support/article/debugging-in-wordpress/' ),
+				__( 'Read about debugging in WordPress.' ),
+				/* translators: accessibility text */
+				__( '(opens in a new tab)' )
+			),
 			'test'        => 'is_in_debug_mode',
 		);
 
