Constant PHP version out of date notification

I can’t seem to get rid of php version notification. I’ve tried a few of the steps I’ve found in the forums but to no avail. We did have a point some time in the past where we changed which branch we were on but that was quite a while ago and the only thing that seems amiss is the constant notification of our php version being out of date. Looking for any ideas on what else to check

Please let me know if there is any other output I should include to help solve the issue.

-bash-4.2$ php ./validate.php

Component Version
LibreNMS 1.55
DB Schema 2019_07_09_150217_update_users_widgets_settings (269)
PHP 7.2.9
MySQL 5.5.47-MariaDB
RRDTool 1.6.0
SNMP NET-SNMP 5.7.2

====================================
— snip —

-bash-4.2$ ./daily.sh
Updating to latest release OK
Updating Composer packages OK
Updating SQL-Schema OK
Updating submodules OK
Cleaning up DB OK
Fetching notifications OK
Caching PeeringDB data OK

-bash-4.2$ git status
/# HEAD detached at 1.55
/# Changes not staged for commit:
/# (use “git add/rm …” to update what will be committed)
/# (use “git checkout – …” to discard changes in working directory)
/#
/# deleted: rrd/.gitignore
/# deleted: storage/framework/cache/data/.gitignore
/#
/# Untracked files:
/# (use “git add …” to include in what will be committed)
— snip —

um, you’ll want to have those .gitignore files in place… so your data doesn’t get deleted.
git checkout rrd/.gitignore to restore the first, same thing for the other with other path.

If the notification is stuck, the best way is to delete it from the database directly. Use a tool like sequal pro or something to make easy if you don’t know mysql.

Thank you for the tips. I’ve deleted directly out of the db for now and will see if comes back next run of the daily.sh

Thanks!