Update action (homeassistant.update_entity) on groups

I use groups (cf : Group - Home Assistant) for my covers defined via the UI.
My integration managing my covers entities, the chacon_dio one, works correctly with groups (up, down, stop, set_position, etc) and a call to the homeassistant.update_entity action updates correctly the entity I select.

If I try to call homeassistant.update_entity on a group of covers, nothing happens.
I would expect it to call the update action on each entity of the group.

This should be an evolution to groups that needs a vote from the community (cf : Group update via action homeassistant.update_entity does nothing · Issue #124218 · home-assistant/core · GitHub).

What do you think about it ? Do you think it would be useful ?

Just use a template.

action: homeassistant.update_entity
target:
  entity_id: "{{ state_attr('cover.abc', 'entity_id') }}"