mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 11:51:07 +07:00
Deprecate Ubuntu 16.04
This commit is contained in:
parent
988f48930d
commit
17f3c38947
@ -58,14 +58,13 @@ Setup PHP with required extensions, php.ini configuration, code-coverage support
|
||||
|
||||
|Virtual environment|YAML workflow label|Pre-installed PHP|
|
||||
|--- |--- |--- |
|
||||
|Ubuntu 16.04|`ubuntu-16.04`|`PHP 5.6` to `PHP 8.0`|
|
||||
|Ubuntu 16.04 [(deprecated)](https://setup-php.com/i/452)|`ubuntu-16.04`|`PHP 5.6` to `PHP 8.0`|
|
||||
|Ubuntu 18.04|`ubuntu-18.04`|`PHP 7.1` to `PHP 8.0`|
|
||||
|Ubuntu 20.04|`ubuntu-latest` or `ubuntu-20.04`|`PHP 7.4` to `PHP 8.0`|
|
||||
|Windows Server 2019|`windows-latest` or `windows-2019`|`PHP 8.0`|
|
||||
|macOS 10.15 Catalina|`macos-latest` or `macos-10.15`|`PHP 8.0`|
|
||||
|macOS 11.0 Big Sur|`macos-11.0`|`PHP 8.0`|
|
||||
|
||||
|
||||
## :heavy_plus_sign: PHP Extension Support
|
||||
- On `ubuntu` by default extensions which are available as a package can be installed. If the extension is not available as a package but it is on `PECL`, it can be installed by specifying `pecl` in the tools input.
|
||||
- On `windows` extensions which have `windows` binary on `PECL` can be installed.
|
||||
|
3
dist/index.js
vendored
3
dist/index.js
vendored
@ -444,6 +444,9 @@ async function run() {
|
||||
core.setFailed('PHP 8.1 is not supported on setup-php v1.\nPlease upgrade to v2 - https://setup-php.com/w/Switch-to-v2');
|
||||
return;
|
||||
}
|
||||
if ((await utils.readEnv('ImageOS')) == 'ubuntu16') {
|
||||
core.warning('Ubuntu 16.04 is deprecated.\nPlease upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452');
|
||||
}
|
||||
if (version) {
|
||||
const os_version = process.platform;
|
||||
let script_path = '';
|
||||
|
@ -67,6 +67,11 @@ export async function run(): Promise<void> {
|
||||
);
|
||||
return;
|
||||
}
|
||||
if ((await utils.readEnv('ImageOS')) == 'ubuntu16') {
|
||||
core.warning(
|
||||
'Ubuntu 16.04 is deprecated.\nPlease upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452'
|
||||
);
|
||||
}
|
||||
if (version) {
|
||||
const os_version: string = process.platform;
|
||||
// check the os version and run the respective script
|
||||
|
Loading…
Reference in New Issue
Block a user