Opcache question moving from php 8.0 to 8.3

On Almalinux 8 PHP 8.0 and 8.3 are installed.
The default php release is 8.0 (php -v = 8.0) and all running websites use php 8.0 in FPM mode.

I want to move all to php 8.3

Sites are wordpress, so I can easily change php version there, but my question is about opcache (installed on both release). I check the opcache status using opcache-gui (https://github.com/amnuts/opcache-gui) that currently shows that it is running for php 8.0

I began to move one website to 8.3. Site is working but opcache-gui doesn’t show the cached files from this site. Is it because the server default php is 8.0, so opcache-gui only shows the cached files of sites under php 8.0? So, if I set the server default php to 8.3, will opcache-gui automatically monitor the php 8.3 opcache system, or are there additional setups to do?

Thank you!