Looking for Hook that is fired after a plugin or wp upgrade is installed/updated

A chance is the update_feedback filter hook. He is usable after core and plugin update, I think. You can hook in and start your custom doing. See the follow example, but only a code for understand my bad english; he don’t work.

add_filter( 'update_feedback', 'fb_add_feedback' );
function fb_add_feedback( $feedback ) {

    // start my custom fuction for remove plugin foo
    fb_remove_plugin_foo();

    return $feedback;
}