diff --git a/dist/setup/index.js b/dist/setup/index.js
index 2cdcfaad..b10307c4 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -11021,7 +11021,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;