1
0
mirror of https://github.com/actions/setup-python synced 2024-11-30 21:22:28 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan Wagner
3902252b48
Merge ae66cc3fdf into 0b93645e9f 2024-10-25 14:31:58 +01:00
nathan wagner
ae66cc3fdf throwing an error when the github API response is a JSON object. 2024-09-17 15:26:45 -04:00

6
dist/setup/index.js vendored
View File

@ -10063,7 +10063,11 @@ function getManifestFromRepo(owner, repo, auth, branch = 'master') {
core.debug('Invalid json');
}
}
return releases;
if (!releases.hasOwnProperty('documentation_url')){
return releases;
}else{
throw new Error ('github API rate limiting response in JSON format')
}
});
}
exports.getManifestFromRepo = getManifestFromRepo;