Step 1. Ensure that you're using project-level composer keys from License Registration tab in your amasty.com account, as old account-level composer keys from Products tab have been deprecated and disabled. These old account-level keys don't grant access to module download anymore. For accessing extensions, project-level keys need to be utilized.
Step 2. Log in to the server via a command line and proceed to the root Magento folder.
Step 3. Execute the following command:
composer update amasty/<composer_module_name>
Here <composer_module_name> is the Composer name of the extension you are updating. To find the Composer name of the module, open the Products tab of your account and scroll down to the Composer packages section:
It is also possible to update multiple extensions with one command:
composer update amasty/<module_name_a> amasty/<module_name_b> amasty/<module_name_c>
Or update all installed Amasty extensions at once:
composer update amasty/*
Step 4. After the extension update, the following commands should be run:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy (your locale)