Enable Auto-updates for all plugins using wp-cli? (since wordpress 5.5)
The simplest way via wp-cli that comes to mind (while it’s not supported yet as far as I can see) is something like: wp eval “update_option( ‘auto_update_plugins’, array_keys( get_plugins() ) );” that will update the auto_update_plugins option with the array of all plugin files to update. This should probably be extended further to only update … Read more