Deprecate Ubuntu 16.04

This commit is contained in:
Shivam Mathur 2021-05-04 23:43:26 +05:30
parent d5790807c8
commit 4067ce8b81
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A
3 changed files with 10 additions and 3 deletions

View File

@ -66,7 +66,7 @@ Both `GitHub-hosted` and `self-hosted` runners are suppported by `setup-php` on
|Virtual environment|YAML workflow label|Pre-installed PHP| |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 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`| |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`| |Windows Server 2019|`windows-latest` or `windows-2019`|`PHP 8.0`|
@ -77,7 +77,6 @@ Both `GitHub-hosted` and `self-hosted` runners are suppported by `setup-php` on
|Host OS/Virtual environment|YAML workflow label| |Host OS/Virtual environment|YAML workflow label|
|--- |--- | |--- |--- |
|Ubuntu 16.04|`self-hosted` or `Linux`|
|Ubuntu 18.04|`self-hosted` or `Linux`| |Ubuntu 18.04|`self-hosted` or `Linux`|
|Ubuntu 20.04|`self-hosted` or `Linux`| |Ubuntu 20.04|`self-hosted` or `Linux`|
|Windows 7 and newer|`self-hosted` or `Windows`| |Windows 7 and newer|`self-hosted` or `Windows`|
@ -632,7 +631,7 @@ act -P ubuntu-20.04=shivammathur/node:2004
# For runs-on: ubuntu-18.04 # For runs-on: ubuntu-18.04
act -P ubuntu-18.04=shivammathur/node:1804 act -P ubuntu-18.04=shivammathur/node:1804
# For runs-on: ubuntu-16.04 # For runs-on: ubuntu-16.04 (deprecated)
act -P ubuntu-16.04=shivammathur/node:1604 act -P ubuntu-16.04=shivammathur/node:1604
``` ```

3
dist/index.js vendored
View File

@ -439,6 +439,9 @@ async function getScript(filename, version, os_version) {
exports.getScript = getScript; exports.getScript = getScript;
async function run() { async function run() {
try { try {
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');
}
const version = await utils.parseVersion(await utils.getInput('php-version', true)); const version = await utils.parseVersion(await utils.getInput('php-version', true));
if (version) { if (version) {
const os_version = process.platform; const os_version = process.platform;

View File

@ -51,6 +51,11 @@ export async function getScript(
*/ */
export async function run(): Promise<void> { export async function run(): Promise<void> {
try { try {
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'
);
}
const version: string = await utils.parseVersion( const version: string = await utils.parseVersion(
await utils.getInput('php-version', true) await utils.getInput('php-version', true)
); );