Boostport / setup-cloudflare-warp

Access Cloudflare Zero-Trust applications in GitHub Actions Workflows
Apache License 2.0
35 stars 20 forks source link

fix: Adjust backoff settings to only retry 10 times and max out at 4 seconds per retry #84

Closed marcusramberg closed 3 months ago

marcusramberg commented 3 months ago

Due to the exponential backoff, in a failure scenario this action can currently run for hours (we saw a run going for 5 hours retrying before being cancelled. This PR reduces the retries to 10, and makes the backoff top out at 4 seconds.

F21 commented 3 months ago

Thanks!