Skip to content
Open
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
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:
spec-file: ${{ inputs.openapi-documentation-input-file }}
- name: Deploy code documentation on Github Pages
if: inputs.should-generate-code-documentation == 'true'
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ inputs.github-token }}
keep_files: true
Expand All @@ -89,7 +89,7 @@ runs:
commit_message: 'docs: update code documentation'
- name: Deploy OpenAPI documentation on Github Pages
if: inputs.should-generate-openapi-documentation == 'true'
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ inputs.github-token }}
keep_files: true
Expand All @@ -100,7 +100,7 @@ runs:
commit_message: 'docs: update openapi documentation'
- name: Deploy AsyncAPI documentation on Github Pages
if: inputs.should-generate-asyncapi-documentation == 'true'
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ inputs.github-token }}
keep_files: true
Expand Down