From a73015898a68a361896d3b89801b92a35a0ffa4b Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 23 May 2023 15:59:06 +0200 Subject: [PATCH] npm run format --- src/setup-python.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;