add_action( 'wp_enqueue_scripts', 'jquery_lib' );
function jquery_lib(){
wp_deregister_script( 'jquery-core' );
wp_register_script( 'jquery-core', '//code.jquery.com/jquery-3.5.1.min.js');
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'bootstrap-js', get_template_directory_uri() .
'/assets/js/bootstrap.min.js', array('jquery'), ' ' );
}