docs: update README.md with new version (#130)

This commit is contained in:
Brandon Williams
2024-02-03 07:24:21 -06:00
committed by GitHub
parent 7152eba30c
commit 3f757583fb

View File

@@ -79,7 +79,7 @@ The final error returned by the command
### Shell ### Shell
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_minutes: 10 timeout_minutes: 10
max_attempts: 3 max_attempts: 3
@@ -90,7 +90,7 @@ with:
### Timeout in minutes ### Timeout in minutes
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_minutes: 10 timeout_minutes: 10
max_attempts: 3 max_attempts: 3
@@ -100,7 +100,7 @@ with:
### Timeout in seconds ### Timeout in seconds
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_seconds: 15 timeout_seconds: 15
max_attempts: 3 max_attempts: 3
@@ -110,7 +110,7 @@ with:
### Only retry after timeout ### Only retry after timeout
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_seconds: 15 timeout_seconds: 15
max_attempts: 3 max_attempts: 3
@@ -121,7 +121,7 @@ with:
### Only retry after error ### Only retry after error
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_seconds: 15 timeout_seconds: 15
max_attempts: 3 max_attempts: 3
@@ -132,7 +132,7 @@ with:
### Retry using continue_on_error input (in composite action) but allow failure and do something with output ### Retry using continue_on_error input (in composite action) but allow failure and do something with output
```yaml ```yaml
- uses: nick-fields/retry@v2 - uses: nick-fields/retry@v3
id: retry id: retry
with: with:
timeout_seconds: 15 timeout_seconds: 15
@@ -154,7 +154,7 @@ with:
### Retry using continue-on-error built-in command (in workflow action) but allow failure and do something with output ### Retry using continue-on-error built-in command (in workflow action) but allow failure and do something with output
```yaml ```yaml
- uses: nick-fields/retry@v2 - uses: nick-fields/retry@v3
id: retry id: retry
# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
continue-on-error: true continue-on-error: true
@@ -183,7 +183,7 @@ with:
### Run script after failure but before retry ### Run script after failure but before retry
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_seconds: 15 timeout_seconds: 15
max_attempts: 3 max_attempts: 3
@@ -194,7 +194,7 @@ with:
### Run different command after first failure ### Run different command after first failure
```yaml ```yaml
uses: nick-fields/retry@v2 uses: nick-fields/retry@v3
with: with:
timeout_seconds: 15 timeout_seconds: 15
max_attempts: 3 max_attempts: 3