You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, I started having problems with some of my GitHub actions: I'm using them to install and test a plugin end-to-end and I got the "Database update required" error.
After a bit of debugging, I saw that the version of WordPress being tested was not the installed version.
I was able to fix it by adding define( 'AUTOMATIC_UPDATER_DISABLED', true ); (as suggested here).
I think it would be nice to have a flag in the install command to say "disable automatic update" or something like that.
I'm having trouble because
wp core install
forcibly upgrades the WordPress version.Is it necessary to upgrade WordPress in the command?
I want to remove the upgrade process if not need it.
For example...
Specify the version and download core.
(There are cases where you want to try a past version, right?)
Make sure you have downloaded the specified version.
After setting up and creating the DB, install core.
(Even if the command ends, the upgrade process is being executed asynchronously, so wait about 30 seconds)
Check the version of core again.
The version has changed.
Please remove the WordPress upgrade process in
wp core install
, or any other workarounds?The text was updated successfully, but these errors were encountered: