@@ -135,7 +135,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
135135
136136```yaml
137137- name: Invoke workflow without inputs. Wait for result
138- uses: the-actions-org/workflow-dispatch@v2
138+ uses: the-actions-org/workflow-dispatch@v4
139139 with:
140140 workflow: My Workflow
141141 token: ${{ secrets.PERSONAL_TOKEN }}
@@ -145,7 +145,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
145145
146146``` yaml
147147- name : Invoke workflow without inputs. Don't wait for result
148- uses : the-actions-org/workflow-dispatch@v2
148+ uses : the-actions-org/workflow-dispatch@v4
149149 with :
150150 workflow : My Workflow
151151 token : ${{ secrets.PERSONAL_TOKEN }}
@@ -156,7 +156,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
156156
157157` ` ` yaml
158158- name : Invoke workflow with inputs
159- uses : the-actions-org/workflow-dispatch@v2
159+ uses : the-actions-org/workflow-dispatch@v4
160160 with :
161161 workflow : Another Workflow
162162 token : ${{ secrets.PERSONAL_TOKEN }}
@@ -167,7 +167,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
167167
168168` ` ` yaml
169169- name : Invoke workflow in another repo with inputs
170- uses : the-actions-org/workflow-dispatch@v2
170+ uses : the-actions-org/workflow-dispatch@v4
171171 with :
172172 workflow : Some Workflow
173173 repo : benc-uk/example
@@ -180,7 +180,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
180180` ` ` yaml
181181- name : Invoke workflow and handle result
182182 id : trigger-step
183- uses : the-actions-org/workflow-dispatch@v2
183+ uses : the-actions-org/workflow-dispatch@v4
184184 with :
185185 workflow : Another Workflow
186186 token : ${{ secrets.PERSONAL_TOKEN }}
@@ -194,7 +194,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
194194` ` ` yaml
195195- name : Invoke workflow and scrap output
196196 id : trigger-step
197- uses : the-actions-org/workflow-dispatch@v2
197+ uses : the-actions-org/workflow-dispatch@v4
198198 with :
199199 workflow : Another Workflow
200200 token : ${{ secrets.PERSONAL_TOKEN }}
@@ -220,7 +220,7 @@ jobs:
220220` ` ` yaml
221221- name : Invoke workflow and handle result
222222 id : trigger-step
223- uses : the-actions-org/workflow-dispatch@v3
223+ uses : the-actions-org/workflow-dispatch@v4
224224 env :
225225 RUN_NAME : ${{ github.repository }}/actions/runs/${{ github.run_id }}
226226 with :
0 commit comments