Skip to content
Closed
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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:

- name: Comment on release notes failure
if: failure()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const sha = context.payload.pull_request.merge_commit_sha;
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:

- name: Remove release notes failure comment if fixed
if: success()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const sha = context.payload.pull_request.merge_commit_sha;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: 🏷️ Check PR labels
id: label_check
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: pr } = await github.rest.pulls.get({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: 🏷️ Check PR labels
id: label_check
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: pr } = await github.rest.pulls.get({
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

- name: 💬 Manage PR comments (add or delete)
if: steps.label_check.outputs.is_skippable != 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const commentIdentifier = "⚠️ **Version Check Failed**";
Expand Down
Loading