Skip to content

Commit 3b2ce6c

Browse files
committed
Update Ubuntu 16.04 warning in install.ts
1 parent c61b925 commit 3b2ce6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ exports.getScript = getScript;
440440
async function run() {
441441
try {
442442
if ((await utils.readEnv('ImageOS')) == 'ubuntu16') {
443-
core.warning('Ubuntu 16.04 is deprecated.\nPlease upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452');
443+
core.warning('setup-php will stop working on Ubuntu 16.04 from August 1, 2021. Please upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452');
444444
}
445445
const version = await utils.parseVersion(await utils.getInput('php-version', true));
446446
if (version) {

src/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export async function run(): Promise<void> {
5353
try {
5454
if ((await utils.readEnv('ImageOS')) == 'ubuntu16') {
5555
core.warning(
56-
'Ubuntu 16.04 is deprecated.\nPlease upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452'
56+
'setup-php will stop working on Ubuntu 16.04 from August 1, 2021. Please upgrade to Ubuntu 18.04 or Ubuntu 20.04 - https://setup-php.com/i/452'
5757
);
5858
}
5959
const version: string = await utils.parseVersion(

0 commit comments

Comments
 (0)