diff --git a/dist/setup/index.js b/dist/setup/index.js index c0f65ff1..207c8e04 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -97566,7 +97566,7 @@ function installCpythonFromRelease(release) { core.error(`Received HTTP status code 403 (Forbidden). This usually indicates that the request is not authorized. Please check your credentials or permissions.`); } else if (err.httpStatusCode === 429) { - core.error(`Received HTTP status code 429 (Too Many Requests). This usually indicates that the rate limit has been exceeded. Please wait and try again later.`); + core.info(`Received HTTP status code 429 (Too Many Requests). This usually indicates that the rate limit has been exceeded. Please wait and try again later.`); } else { core.error(err.message); diff --git a/src/install-python.ts b/src/install-python.ts index 5f8f6529..70b45263 100644 --- a/src/install-python.ts +++ b/src/install-python.ts @@ -154,7 +154,7 @@ export async function installCpythonFromRelease(release: tc.IToolRelease) { `Received HTTP status code 403 (Forbidden). This usually indicates that the request is not authorized. Please check your credentials or permissions.` ); } else if (err.httpStatusCode === 429) { - core.error( + core.info( `Received HTTP status code 429 (Too Many Requests). This usually indicates that the rate limit has been exceeded. Please wait and try again later.` ); } else {