Disable update notifications for an individual plugin.
<?php
/**
 * Disable update notifications for an individual plugin.
 */
add_filter('site_transient_update_plugins', function($value) {
  unset($value->response['akismet/akismet.php']);
  return $value;
});
?>
functions.php