To determine locally modified files, core updater asks API sever for a list of files for some revision and PHP version.
Unfortunately, previous versions of core updater did not remember PHP version the code base was build for, and always asked for PHP version currently in use.
When you switched the PHP version to 8.1, core updater asked api server to send him list of files for revision 05affeeeb438431cc5582d671785b9ce3b9ca0a3 and php version 8.1. Unfortunately, this combination does not exist, because this revision was only build for php7.4 and lower (that version does not officially supports PHP8).
There are multiple fixes.
1) downgrade your php version to 7.4 (or whatever you were using before), and then update to bleeding edge. Then you can upgrade php version to 8.1 and update again.
2) alternatively, you can edit your settings.inc.php file, and add entry
define('_TB_BUILD_PHP_', '7.4');
This will tell core updater that he should ask for combination 05affeeeb438431cc5582d671785b9ce3b9ca0a3 and php 7.4
Note that new versions of core updater saves information about PHP version the code base was designed for during update, so this problem will not occur in the future. Once you update, this _TB_BUILD_PHP_ constant in settings.inc.php will be created/updated by core updater automatically.