Index: wp-admin/includes/class-wp-upgrader.php
===================================================================
--- wp-admin/includes/class-wp-upgrader.php	(revision 15730)
+++ wp-admin/includes/class-wp-upgrader.php	(working copy)
@@ -1046,7 +1046,7 @@
 
 		$update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $this->plugin);
 		if ( ! empty($update_actions) )
-			$this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
+			$this->feedback(implode(' | ', (array)$update_actions));
 	}
 
 	function before() {
@@ -1201,7 +1201,7 @@
 
 		$update_actions = apply_filters('update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info);
 		if ( ! empty($update_actions) )
-			$this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
+			$this->feedback(implode(' | ', (array)$update_actions));
 	}
 }
 
@@ -1232,7 +1232,7 @@
 
 		$update_actions = apply_filters('update_bulk_theme_complete_actions', $update_actions, $this->theme_info);
 		if ( ! empty($update_actions) )
-			$this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
+			$this->feedback(implode(' | ', (array)$update_actions));
 	}
 }
 
@@ -1298,7 +1298,7 @@
 		}
 		$install_actions = apply_filters('install_plugin_complete_actions', $install_actions, $this->api, $plugin_file);
 		if ( ! empty($install_actions) )
-			$this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
+			$this->feedback(implode(' | ', (array)$install_actions));
 	}
 }
 
@@ -1365,7 +1365,7 @@
 
 		$install_actions = apply_filters('install_theme_complete_actions', $install_actions, $this->api, $stylesheet, $theme_info);
 		if ( ! empty($install_actions) )
-			$this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
+			$this->feedback(implode(' | ', (array)$install_actions));
 	}
 }
 
@@ -1419,7 +1419,7 @@
 
 		$update_actions = apply_filters('update_theme_complete_actions', $update_actions, $this->theme);
 		if ( ! empty($update_actions) )
-			$this->feedback('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
+			$this->feedback(implode(' | ', (array)$update_actions));
 	}
 }
 
Index: wp-admin/update-core.php
===================================================================
--- wp-admin/update-core.php	(revision 15730)
+++ wp-admin/update-core.php	(working copy)
@@ -341,7 +341,7 @@
 			show_message( __('Installation Failed') );
 	} else {
 		show_message( __('WordPress updated successfully') );
-		show_message( '<strong>' . __('Actions:') . '</strong> <a href="' . esc_url( admin_url() ) . '">' . __('Go to Dashboard') . '</a>' );
+		show_message( '<a href="' . esc_url( admin_url() ) . '">' . __('Go to Dashboard') . '</a>' );
 	}
 	echo '</div>';
 }
