-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the versions in the CI validation workflow
- Loading branch information
1 parent
027e7ff
commit 1149c29
Showing
1 changed file
with
4 additions
and
4 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 |
---|---|---|
|
@@ -12,18 +12,18 @@ jobs: | |
steps: | ||
#"standard step" where repo needs to be checked-out first | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
#Using another action for AsyncAPI for validation | ||
- name: Validating AsyncAPI document | ||
uses: WaleedAshraf/[email protected].9 | ||
uses: WaleedAshraf/[email protected].10 | ||
with: | ||
filepath: src/main/asyncapi/network_survey_messaging.yaml | ||
|
||
#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: docker://asyncapi/github-action-for-generator:2.1.7 | ||
uses: docker://asyncapi/github-action-for-generator:2.1.13 | ||
with: | ||
template: '@asyncapi/html-template@0.28.1' #In case of template from npm, because of @ it must be in quotes | ||
template: '@asyncapi/html-template@1.0.0' #In case of template from npm, because of @ it must be in quotes | ||
filepath: src/main/asyncapi/network_survey_messaging.yaml | ||
output: generated-html |