@@ -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
8383with :
8484 timeout_minutes : 10
8585 max_attempts : 3
9090### Timeout in minutes
9191
9292` ` ` yaml
93- uses : nick-fields/retry@v2
93+ uses : nick-fields/retry@v3
9494with :
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
104104with :
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
114114with :
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
125125with :
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
187187with :
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
198198with :
199199 timeout_seconds : 15
200200 max_attempts : 3
0 commit comments