You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor github/download-public-release to use github/download-private-release
if GITHUB_TOKEN exists.
Why
If GITHUB_TOKEN exists we use an authenticated call that has limits 5000 per day per IP
else we call anonymous call that has limits to 60 per day per IP.
Workaround
Make exits non-zero error if anonymous request limit hit.
What
github/download-public-releaseto usegithub/download-private-releaseif
GITHUB_TOKENexists.Why
GITHUB_TOKENexists we use an authenticated call that has limits 5000 per day per IPelse we call anonymous call that has limits to 60 per day per IP.
Workaround