After enabling content Moderation and Workflow Module.
When I am saving node with property $node_object->setNewRevision(FALSE); it still creating a new revision.
Example Code:
$node = \Drupal::entityTypeManager()->getStorage('node')->load(id);
$node->title = ‘Title A’;
$node->setNewRevision(FALSE);
$node->save();