Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/pr-title-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
- name: post comment about invalid PR title
if: failure()
uses: marocchino/sticky-pull-request-comment@v3.0.4
uses: marocchino/sticky-pull-request-comment@v3.0.5
with:
header: conventional-commit-pr-title
message: |
Expand All @@ -42,7 +42,7 @@ jobs:
</details>
- name: delete comment about invalid PR title
if: success()
uses: marocchino/sticky-pull-request-comment@v3.0.4
uses: marocchino/sticky-pull-request-comment@v3.0.5
with:
header: conventional-commit-pr-title
delete: true
4 changes: 2 additions & 2 deletions .github/workflows/pullrequest_linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 11.9.0
version: 11.22.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 11.9.0
version: 11.22.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v7

- name: Run Renovate
uses: renovatebot/github-action@v46.1.17
uses: renovatebot/github-action@v46.2.2
with:
configurationFile: ".github/renovate.json"
token: ${{ secrets.RENOVATE_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 11.9.0
version: 11.22.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 11.9.0
version: 11.22.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate-openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Post comment about OpenAPI validation failure
if: failure() && steps.check_changes.outputs.CHANGE_DETECTED == 'true'
uses: marocchino/sticky-pull-request-comment@v3.0.4
uses: marocchino/sticky-pull-request-comment@v3.0.5
with:
header: openapi-validation-yml
message: |
Expand All @@ -86,7 +86,7 @@ jobs:

- name: Remove sticky comment on OpenAPI validation success
if: success() || steps.check_changes.outputs.CHANGE_DETECTED == 'false'
uses: marocchino/sticky-pull-request-comment@v3.0.4
uses: marocchino/sticky-pull-request-comment@v3.0.5
with:
header: openapi-validation-yml
delete: true
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:

- name: Post comment about client code validation failure
if: failure() && env.CHANGE_DETECTED == 'true'
uses: marocchino/sticky-pull-request-comment@v3.0.4
uses: marocchino/sticky-pull-request-comment@v3.0.5
with:
header: client-code-validation
message: |
Expand All @@ -162,7 +162,7 @@ jobs:

- name: Remove sticky comment on client code validation success
if: success() || env.CHANGE_DETECTED == 'false'
uses: marocchino/sticky-pull-request-comment@v3.0.4
uses: marocchino/sticky-pull-request-comment@v3.0.5
with:
header: client-code-validation
delete: true
Loading