From a6d99c257c58cecafcc9528da07f26d433596c8e Mon Sep 17 00:00:00 2001 From: Ashish Padhy <100484401+Shurtu-gal@users.noreply.github.com> Date: Mon, 15 Jan 2024 15:14:23 +0530 Subject: [PATCH] fix: change all action versions from 3.0.2 -> 3.1.1 --- README.md | 12 ++++++------ action.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index aad0bbcd1..5c2a1b1c5 100644 --- a/README.md +++ b/README.md @@ -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/html-template@0.9.0' #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 diff --git a/action.yml b/action.yml index 3c1f8ef94..e7c04d68d 100644 --- a/action.yml +++ b/action.yml @@ -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 }}