Skip to content

Commit

Permalink
feat: update readme versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric Biesse committed Jun 19, 2024
1 parent 2b26cb2 commit 6bf7225
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
```yaml
- name: Invoke workflow without inputs. Wait for result
uses: the-actions-org/workflow-dispatch@v2
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: My Workflow
token: ${{ secrets.PERSONAL_TOKEN }}
Expand All @@ -145,7 +145,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this

```yaml
- name: Invoke workflow without inputs. Don't wait for result
uses: the-actions-org/workflow-dispatch@v2
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: My Workflow
token: ${{ secrets.PERSONAL_TOKEN }}
Expand All @@ -156,7 +156,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
```yaml
- name: Invoke workflow with inputs
uses: the-actions-org/workflow-dispatch@v2
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: Another Workflow
token: ${{ secrets.PERSONAL_TOKEN }}
Expand All @@ -167,7 +167,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
```yaml
- name: Invoke workflow in another repo with inputs
uses: the-actions-org/workflow-dispatch@v2
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: Some Workflow
repo: benc-uk/example
Expand All @@ -180,7 +180,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
```yaml
- name: Invoke workflow and handle result
id: trigger-step
uses: the-actions-org/workflow-dispatch@v2
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: Another Workflow
token: ${{ secrets.PERSONAL_TOKEN }}
Expand All @@ -194,7 +194,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
```yaml
- name: Invoke workflow and scrap output
id: trigger-step
uses: the-actions-org/workflow-dispatch@v2
uses: the-actions-org/workflow-dispatch@v4
with:
workflow: Another Workflow
token: ${{ secrets.PERSONAL_TOKEN }}
Expand All @@ -220,7 +220,7 @@ jobs:
```yaml
- name: Invoke workflow and handle result
id: trigger-step
uses: the-actions-org/workflow-dispatch@v3
uses: the-actions-org/workflow-dispatch@v4
env:
RUN_NAME: ${{ github.repository }}/actions/runs/${{ github.run_id }}
with:
Expand Down

0 comments on commit 6bf7225

Please sign in to comment.