I started getting a similar error and the reason was that Github recently changed the format of their auth tokens:
To resolve the error:
- Find the
composer/auth.jsonfile (if you’re running the project in a container, you’ll have to bash into it and find the file in there) - Remove its
github.comentry. Your file will probably look like the following after removing the entry:{"github-oauth": {}} - Run
composer self-update. The issue got resolved in version2.0.12. See the first item in the changelog for that version here: https://getcomposer.org/changelog/2.0.12
After that, you can restore your composer/auth.json file to its initial state as the newer version of composer will recognize the new key format.