*/
private static void setPendingFalseForActions(JPAService jpaService, String id, String actionId,
List<UpdateEntry> updateList) throws CommandException {
List<WorkflowActionBean> actions;
try {
actions = jpaService.execute(new WorkflowActionRetryManualGetJPAExecutor(id));
for (WorkflowActionBean action : actions) {
if (actionId != null && actionId.equals(action.getId())) {
// this action has been changed in handleNonTransient()
continue;