<https://wordpress.org/support/article/configuring-automatic-background-updates/>
By default, every site has automatic updates enabled for minor core releases and translation files. Add this to wp-config.php:
/* Disable ALL automatic updates */
define( 'AUTOMATIC_UPDATER_DISABLED', true );
/* Minor core updates aan zetten */
define( 'WP_AUTO_UPDATE_CORE', false );
Code language: JavaScript (javascript)