From 68216417736b8ddf42877344d38afc58a317a056 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Tue, 29 Aug 2023 16:08:58 -0700 Subject: [PATCH] Change deprecation comment to past tense June 19th is now in the past. --- dist/setup/index.js | 2 +- src/setup-python.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 37b247905..c2f974eb4 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -69882,7 +69882,7 @@ function run() { } else { if (version.startsWith('2')) { - core.warning('The support for python 2.7 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672'); + core.warning('The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672'); } const installed = yield finder.useCpythonVersion(version, arch, updateEnvironment, checkLatest, allowPreReleases); pythonVersion = installed.version; diff --git a/src/setup-python.ts b/src/setup-python.ts index 88ffc1056..ba2acaab7 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -109,7 +109,7 @@ async function run() { } else { if (version.startsWith('2')) { core.warning( - 'The support for python 2.7 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672' + 'The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672' ); } const installed = await finder.useCpythonVersion(