Index: src/wp-admin/includes/class-wp-site-health.php
===================================================================
--- src/wp-admin/includes/class-wp-site-health.php	(revision a0ca5afd8977b5a3857084d9cb1bd345166e2f21)
+++ src/wp-admin/includes/class-wp-site-health.php	(date 1554461139396)
@@ -182,7 +182,7 @@
 			'label'       => '',
 			'status'      => '',
 			'badge'       => array(
-				'label' => __( 'Security' ),
+				'label' => __( 'Performance' ),
 				'color' => 'red',
 			),
 			'description' => '',
@@ -242,8 +242,9 @@
 						);
 					} else {
 						// This is a minor version, sometimes considered more critical.
-						$result['status']      = 'critical';
-						$result['description'] = sprintf(
+						$result['status']         = 'critical';
+						$result['badge']['label'] = __( 'Security' );
+						$result['description']    = sprintf(
 							'<p>%s</p>',
 							__( 'A new minor update is available for your site. Because minor updates often address security, it&#8217;s important to install them.' )
 						);
@@ -621,7 +622,7 @@
 			),
 			'status'      => 'good',
 			'badge'       => array(
-				'label' => __( 'Security' ),
+				'label' => __( 'Performance' ),
 				'color' => 'red',
 			),
 			'description' => sprintf(
@@ -660,8 +661,9 @@
 		}
 
 		// Anything no longer secure must be updated.
-		$result['label']  = __( 'Your PHP version requires an update' );
-		$result['status'] = 'critical';
+		$result['label']          = __( 'Your PHP version requires an update' );
+		$result['status']         = 'critical';
+		$result['badge']['label'] = __( 'Security' );
 
 		return $result;
 	}
@@ -905,7 +907,7 @@
 			'label'       => __( 'SQL server is up to date' ),
 			'status'      => 'good',
 			'badge'       => array(
-				'label' => __( 'Security' ),
+				'label' => __( 'Performance' ),
 				'color' => 'red',
 			),
 			'description' => sprintf(
@@ -937,7 +939,8 @@
 		if ( ! $this->mysql_min_version_check ) {
 			$result['status'] = 'critical';
 
-			$result['label'] = __( 'Severely outdated SQL server' );
+			$result['label']          = __( 'Severely outdated SQL server' );
+			$result['badge']['label'] = __( 'Security' );
 
 			$result['description'] .= sprintf(
 				'<p>%s</p>',
