Open NextLight opened 3 years ago
Specifying an auth token fixes the "API rate limit exceeded" error when running this action in macOS.
More info about the error here: https://github.com/actions/virtual-environments/issues/602.
Setting the token is as simple as adding repo-token: ${{ secrets.GITHUB_TOKEN }}. You can find an example here: https://github.com/cesena/ghidra2dwarf/commit/9b2c13033390736dfa44672aebde76752f6652f6
repo-token: ${{ secrets.GITHUB_TOKEN }}
The implementation is very hacky but works. Feel free to change it.
I have published an updated version of this action that includes this feature: https://github.com/antoniovazquezblanco/setup-ghidra
Specifying an auth token fixes the "API rate limit exceeded" error when running this action in macOS.
More info about the error here: https://github.com/actions/virtual-environments/issues/602.
Setting the token is as simple as adding
repo-token: ${{ secrets.GITHUB_TOKEN }}
.You can find an example here: https://github.com/cesena/ghidra2dwarf/commit/9b2c13033390736dfa44672aebde76752f6652f6
The implementation is very hacky but works. Feel free to change it.