Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change all action versions from 3.0.2 -> 3.1.1 #377

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected]' #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
Loading