Skip to content

Commit 3f75758

Browse files
authored
docs: update README.md with new version (#130)
1 parent 7152eba commit 3f75758

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The final error returned by the command
7979
### Shell
8080

8181
```yaml
82-
uses: nick-fields/retry@v2
82+
uses: nick-fields/retry@v3
8383
with:
8484
timeout_minutes: 10
8585
max_attempts: 3
@@ -90,7 +90,7 @@ with:
9090
### Timeout in minutes
9191
9292
```yaml
93-
uses: nick-fields/retry@v2
93+
uses: nick-fields/retry@v3
9494
with:
9595
timeout_minutes: 10
9696
max_attempts: 3
@@ -100,7 +100,7 @@ with:
100100
### Timeout in seconds
101101
102102
```yaml
103-
uses: nick-fields/retry@v2
103+
uses: nick-fields/retry@v3
104104
with:
105105
timeout_seconds: 15
106106
max_attempts: 3
@@ -110,7 +110,7 @@ with:
110110
### Only retry after timeout
111111
112112
```yaml
113-
uses: nick-fields/retry@v2
113+
uses: nick-fields/retry@v3
114114
with:
115115
timeout_seconds: 15
116116
max_attempts: 3
@@ -121,7 +121,7 @@ with:
121121
### Only retry after error
122122
123123
```yaml
124-
uses: nick-fields/retry@v2
124+
uses: nick-fields/retry@v3
125125
with:
126126
timeout_seconds: 15
127127
max_attempts: 3
@@ -132,7 +132,7 @@ with:
132132
### Retry using continue_on_error input (in composite action) but allow failure and do something with output
133133
134134
```yaml
135-
- uses: nick-fields/retry@v2
135+
- uses: nick-fields/retry@v3
136136
id: retry
137137
with:
138138
timeout_seconds: 15
@@ -154,7 +154,7 @@ with:
154154
### Retry using continue-on-error built-in command (in workflow action) but allow failure and do something with output
155155
156156
```yaml
157-
- uses: nick-fields/retry@v2
157+
- uses: nick-fields/retry@v3
158158
id: retry
159159
# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
160160
continue-on-error: true
@@ -183,7 +183,7 @@ with:
183183
### Run script after failure but before retry
184184
185185
```yaml
186-
uses: nick-fields/retry@v2
186+
uses: nick-fields/retry@v3
187187
with:
188188
timeout_seconds: 15
189189
max_attempts: 3
@@ -194,7 +194,7 @@ with:
194194
### Run different command after first failure
195195
196196
```yaml
197-
uses: nick-fields/retry@v2
197+
uses: nick-fields/retry@v3
198198
with:
199199
timeout_seconds: 15
200200
max_attempts: 3

0 commit comments

Comments
 (0)