-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change all action versions from 3.0.2 -> 3.1.1
- Loading branch information
1 parent
7c57fb6
commit a6d99c2
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ Sample usage: | |
|
||
```yaml | ||
- name: Generating HTML from my AsyncAPI document | ||
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want | ||
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want | ||
with: | ||
custom_command: bundle ./asyncapi.yaml --output final-asyncapi.yaml | ||
``` | ||
|
@@ -104,7 +104,7 @@ In case all defaults are fine for you, just add such step: | |
|
||
```yaml | ||
- name: Generating Markdown from my AsyncAPI document | ||
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want | ||
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want | ||
``` | ||
|
||
### 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 | |
|
||
```yaml | ||
- name: Generating HTML from my AsyncAPI document | ||
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want | ||
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want | ||
with: | ||
command: generate | ||
filepath: ./docs/api/asyncapi.yaml | ||
|
@@ -145,7 +145,7 @@ jobs: | |
#In case you do not want to use defaults, you for example want to use different template | ||
- name: Generating HTML from my AsyncAPI document | ||
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want | ||
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want | ||
with: | ||
template: '@asyncapi/[email protected]' #In case of template from npm, because of @ it must be in quotes | ||
filepath: docs/api/my-asyncapi.yml | ||
|
@@ -182,7 +182,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
- name: Generating models from my AsyncAPI document | ||
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want | ||
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want | ||
with: | ||
command: generate | ||
filepath: docs/api/my-asyncapi.yml | ||
|
@@ -210,7 +210,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
- name: Validating AsyncAPI document | ||
uses: asyncapi/github-action-for-cli@v3.0.2 # You can use any version you want | ||
uses: asyncapi/github-action-for-cli@v3.1.1 # You can use any version you want | ||
with: | ||
command: validate | ||
filepath: docs/api/my-asyncapi.yml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters