I have a CLI tool that downloads files from a GitHub repo and I wrote integration tests for this tool that use the actual GitHub API. I don't make the requests with authentication so I get hit by the rate limit when I run the tests too fast:
For unauthenticated requests, the rate limit allows for up to 60 requests per hour. Unauthenticated requests are associated with the originating IP address, and not the user making requests.
Does the same limit apply for CI scripts run in GitHub Actions?