Simply copy and paste the snippet below into your functions.php file of your child theme:
// Disable plugin updates
add_filter('auto_update_plugin', '__return_false');
// Disable theme updates
add_filter('auto_update_theme', '__return_false');
// Disable all core updates
add_filter('auto_update_core', '__return_false');