Fix the action string in the manifest

android.intent.action.ACTION_UPDATE_CONVERSATION_ACTIONS was wrong,
it should be android.intent.action.UPDATE_CONVERSATION_ACTIONS

BUG: 123338259
Test: Run IntentTest#shouldNotFindUnexpectedIntents

Change-Id: I429aee54065a2112f55b67d3bacb3e9f68eeb344
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index 25baa92..8026f8e 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -4730,7 +4730,7 @@
         <receiver android:name="com.android.server.updates.ConversationActionsInstallReceiver"
                   android:permission="android.permission.UPDATE_CONFIG">
             <intent-filter>
-                <action android:name="android.intent.action.ACTION_UPDATE_CONVERSATION_ACTIONS" />
+                <action android:name="android.intent.action.UPDATE_CONVERSATION_ACTIONS" />
                 <data android:scheme="content" android:host="*" android:mimeType="*/*" />
             </intent-filter>
         </receiver>