diff --git a/dist/setup/index.js b/dist/setup/index.js index b971768..7bca890 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -70224,7 +70224,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 05db90c..0dd45f0 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -124,7 +124,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(