diff --git a/src/setup-python.ts b/src/setup-python.ts index e589d859..9231b31c 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -35,7 +35,9 @@ async function run() { ); } else { if (version.trim().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 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672' + ); } const installed = await finder.useCpythonVersion(version, arch); pythonVersion = installed.version;