There's a key thing to understand about Administrative Templates (ADMX):
Updating Administrative Templates will NOT change anything in the GPOs you deployed: ADMX are read by the Group Policy Management Console (or gpresult when you generate a report) to display the settings to a human (showing a list of settings, a description,...). That's it!
Example: consider the following scenario:
You create a new GPO with ADMX templates from 2011 and you deploy this GPO.
Now, imagine you update the ADMX templates to a newer version and let's say Microsoft removed from the newer ADMX files some of the older 2011-era settings you previously set with the older ADMX template files:
The computers/servers will not notice this, because they don't need ADMX to apply the policy.
However, the next time you'll open the Group Policy Management Console and want to edit your GPO, you'll NOT see the settings you set before, BUT they'll be shown under "Extra registry settings" (in the HTML report too)
So, worst case scenario for you: You'll end up with Group Policies deploying "older" settings that Microsoft removed from ADMX and you'll not be able to edit these settings using the Group Policy Console.
=> If you are using Central Store: Backup the current ADMX files, and update the ADMX templates. If needed, you can restore the older ADMX files.
=> If you are not using the Central Store: Note that editing a Group Policy from Server 2019 will use the Server 2019 ADMX files (local), so, if you configured "older" settings that Microsoft removed with Server 2019, they'll show up as "Extra Registry Settings" when viewed from a 2019 server because the policy editor doesn't know how to show you these settings. Opening the Group Policy Console from Server 2012R2 will use the 2012R2 ADMX files (local). (By the way, that's why the Central Store is recommended because you don't want to see different behaviors in the GPO consoles based on "where" you are editing the policies...)
You can take a look at my answer here too, about a similar situation.