@@ -79,7 +79,7 @@ The final error returned by the command
79
79
### Shell
80
80
81
81
``` yaml
82
- uses : nick-fields/retry@v2
82
+ uses : nick-fields/retry@v3
83
83
with :
84
84
timeout_minutes : 10
85
85
max_attempts : 3
90
90
### Timeout in minutes
91
91
92
92
` ` ` yaml
93
- uses : nick-fields/retry@v2
93
+ uses : nick-fields/retry@v3
94
94
with :
95
95
timeout_minutes : 10
96
96
max_attempts : 3
@@ -100,7 +100,7 @@ with:
100
100
### Timeout in seconds
101
101
102
102
` ` ` yaml
103
- uses : nick-fields/retry@v2
103
+ uses : nick-fields/retry@v3
104
104
with :
105
105
timeout_seconds : 15
106
106
max_attempts : 3
@@ -110,7 +110,7 @@ with:
110
110
### Only retry after timeout
111
111
112
112
` ` ` yaml
113
- uses : nick-fields/retry@v2
113
+ uses : nick-fields/retry@v3
114
114
with :
115
115
timeout_seconds : 15
116
116
max_attempts : 3
@@ -121,7 +121,7 @@ with:
121
121
### Only retry after error
122
122
123
123
` ` ` yaml
124
- uses : nick-fields/retry@v2
124
+ uses : nick-fields/retry@v3
125
125
with :
126
126
timeout_seconds : 15
127
127
max_attempts : 3
@@ -132,7 +132,7 @@ with:
132
132
### Retry using continue_on_error input (in composite action) but allow failure and do something with output
133
133
134
134
` ` ` yaml
135
- - uses : nick-fields/retry@v2
135
+ - uses : nick-fields/retry@v3
136
136
id : retry
137
137
with :
138
138
timeout_seconds : 15
@@ -154,7 +154,7 @@ with:
154
154
### Retry using continue-on-error built-in command (in workflow action) but allow failure and do something with output
155
155
156
156
` ` ` yaml
157
- - uses : nick-fields/retry@v2
157
+ - uses : nick-fields/retry@v3
158
158
id : retry
159
159
# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
160
160
continue-on-error : true
@@ -183,7 +183,7 @@ with:
183
183
### Run script after failure but before retry
184
184
185
185
` ` ` yaml
186
- uses : nick-fields/retry@v2
186
+ uses : nick-fields/retry@v3
187
187
with :
188
188
timeout_seconds : 15
189
189
max_attempts : 3
@@ -194,7 +194,7 @@ with:
194
194
### Run different command after first failure
195
195
196
196
` ` ` yaml
197
- uses : nick-fields/retry@v2
197
+ uses : nick-fields/retry@v3
198
198
with :
199
199
timeout_seconds : 15
200
200
max_attempts : 3
0 commit comments