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
If more requests are made within the time frame, then you will start to see
176
+
rate-limit errors during downloading that looks like:
177
+
178
+
```
179
+
##[error]API rate limit exceeded for...
180
+
```
181
+
182
+
To get a higher rate limit, you can [generate a personal access token on github.com](https://github.com/settings/tokens/new)
183
+
and pass it as the `github_token` input for the action:
184
+
185
+
```yaml
186
+
uses: goreleaser/goreleaser-action@v4
187
+
with:
188
+
github_token: ${{ secrets.GH_DOTCOM_TOKEN }}
189
+
version: v1.14.1
190
+
```
191
+
192
+
If the runner is not able to access `github.com`, it will take the default one
193
+
available on the GitHub Runner or runner's tool cache. See "[Setting up the
194
+
tool cache on self-hosted runners without internet
0 commit comments