This is more to document my experience upgrading from v0.16.0 beta to v1.0.4, which also required me to update the php version.
When typing php flarum info
the php version came up as v8.0.8.
However before upgrading the flarum dashboard would show 7.3.
After a bit of digging, the nginx sites-available flarum.conf
stated:
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
Had to update it to:
fastcgi_pass unix:/run/php/php8.0-fpm.sock;
Hope this can help someone else that's rather new and stuck on why it isn't updating.