diff --git a/dist/setup/index.js b/dist/setup/index.js index 37b24790..c2f974eb 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 88ffc105..ba2acaab 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(