Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit b0eab3e

Browse files
authored
fix: change all action versions from 3.0.2 -> 3.1.1 (#377)
1 parent 7c57fb6 commit b0eab3e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Sample usage:
4141

4242
```yaml
4343
- name: Generating HTML from my AsyncAPI document
44-
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want
44+
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want
4545
with:
4646
custom_command: bundle ./asyncapi.yaml --output final-asyncapi.yaml
4747
```
@@ -104,7 +104,7 @@ In case all defaults are fine for you, just add such step:
104104

105105
```yaml
106106
- name: Generating Markdown from my AsyncAPI document
107-
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want
107+
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want
108108
```
109109

110110
### Using all possible inputs
@@ -113,7 +113,7 @@ In case you do not want to use defaults, you for example want to use different t
113113

114114
```yaml
115115
- name: Generating HTML from my AsyncAPI document
116-
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want
116+
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want
117117
with:
118118
command: generate
119119
filepath: ./docs/api/asyncapi.yaml
@@ -145,7 +145,7 @@ jobs:
145145
146146
#In case you do not want to use defaults, you for example want to use different template
147147
- name: Generating HTML from my AsyncAPI document
148-
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want
148+
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want
149149
with:
150150
template: '@asyncapi/[email protected]' #In case of template from npm, because of @ it must be in quotes
151151
filepath: docs/api/my-asyncapi.yml
@@ -182,7 +182,7 @@ jobs:
182182
uses: actions/checkout@v2
183183
184184
- name: Generating models from my AsyncAPI document
185-
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want
185+
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want
186186
with:
187187
command: generate
188188
filepath: docs/api/my-asyncapi.yml
@@ -210,7 +210,7 @@ jobs:
210210
uses: actions/checkout@v2
211211
212212
- name: Validating AsyncAPI document
213-
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want
213+
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want
214214
with:
215215
command: validate
216216
filepath: docs/api/my-asyncapi.yml

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
using: 'docker'
3939
# This is the image that will be used to run the action.
4040
# IMPORTANT: The version has to be changed manually in your PRs.
41-
image: 'docker://asyncapi/github-action-for-cli:3.0.2'
41+
image: 'docker://asyncapi/github-action-for-cli:3.1.1'
4242
args:
4343
- ${{ inputs.cli_version }}
4444
- ${{ inputs.command }}

0 commit comments

Comments
 (0)