How can I upgrade my PHP version from PHP 7.1.11 to 7.1.3 on my Ubuntu 16.04 server? I've tried the following:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php7.1
But them I'm getting the following response:
php7.1 is already the newest version (7.1.16-1+ubuntu16.04.1+deb.sury.org+1).
Also tried to do the following:
sudo apt-get install php7.1.3
But then I am getting this error:
E: Unable to locate package php7.1.3
E: Couldn't find any package by glob 'php7.1.3'
E: Couldn't find any package by regex 'php7.1.3'
How can I upgrade minor version?