mirror of
				https://github.com/shivammathur/setup-php.git
				synced 2025-10-31 07:16:22 +07:00 
			
		
		
		
	Deprecate Ubuntu 16.04
This commit is contained in:
		| @ -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| | ||||
| |--- |--- |--- | | ||||
| |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`| | ||||
| @ -77,7 +77,6 @@ Both `GitHub-hosted` and `self-hosted` runners are suppported by `setup-php` on | ||||
|  | ||||
| |Host OS/Virtual environment|YAML workflow label| | ||||
| |--- |--- | | ||||
| |Ubuntu 16.04|`self-hosted` or `Linux`| | ||||
| |Ubuntu 18.04|`self-hosted` or `Linux`| | ||||
| |Ubuntu 20.04|`self-hosted` or `Linux`| | ||||
| |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 | ||||
| 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 | ||||
| ``` | ||||
|  | ||||
|  | ||||
							
								
								
									
										3
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @ -439,6 +439,9 @@ async function getScript(filename, version, os_version) { | ||||
| exports.getScript = getScript; | ||||
| async function run() { | ||||
|     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)); | ||||
|         if (version) { | ||||
|             const os_version = process.platform; | ||||
|  | ||||
| @ -51,6 +51,11 @@ export async function getScript( | ||||
|  */ | ||||
| export async function run(): Promise<void> { | ||||
|   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( | ||||
|       await utils.getInput('php-version', true) | ||||
|     ); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shivam Mathur
					Shivam Mathur