How to remove the theme update remove action…

How to remove the theme update:
remove_action( 'load-update-core.php', 'wp_update_themes' );
add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
wp_clear_scheduled_hook( 'wp_update_themes' );

Or deactivate the theme you want to change the update.
Rename the theme you don’t want to show an update.
Reactivate the theme you don’t want to update.