Application cache is not ready
The Application cache is not ready warning means that the new Passwork version is already deployed, but the server cache has not been prepared yet:

Run the command depending on the installation type and OS:
- DEB
- RPM
- Docker
- PowerShell
sudo -u www-data bash -c 'cd /var/www && php -d memory_limit=-1 ./bin/console cache:warmup'
sudo -u apache bash -c 'cd /var/www && php -d memory_limit=-1 ./bin/console cache:warmup'
docker compose up -d php-fpm --force-recreate
cd "$env:SystemDrive\inetpub\wwwroot\passwork"
php -d "memory_limit=-1" .\bin\console cache:warmup
info
The commands use the default installation paths. If Passwork is installed in a different directory, specify the actual path in the command.