Skip to content

Commit

Permalink
fix: change all action versions from 3.0.2 -> 3.1.1 (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shurtu-gal authored Jan 15, 2024
1 parent 7c57fb6 commit b0eab3e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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/html-template@0.9.0' #In case of template from npm, because of @ it must be in quotes
filepath: docs/api/my-asyncapi.yml
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
using: 'docker'
# This is the image that will be used to run the action.
# IMPORTANT: The version has to be changed manually in your PRs.
image: 'docker://asyncapi/github-action-for-cli:3.0.2'
image: 'docker://asyncapi/github-action-for-cli:3.1.1'
args:
- ${{ inputs.cli_version }}
- ${{ inputs.command }}
Expand Down

0 comments on commit b0eab3e

Please sign in to comment.