Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/breaking-change-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
# Uses a hidden HTML marker so subsequent pushes update the same comment
# rather than creating a new one per commit.
- name: Post or update PR comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-testing-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
steps:
- name: Check for fork PR
id: fork-check
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Safety Check - Prevent Workflow Modification Attacks
id: safety-check
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
return 'true';

- name: Collaborator Check
uses: actions/github-script@v8
uses: actions/github-script@v9
id: collab-check
with:
result-encoding: string
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Check CI status
id: ci-status
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: checkRuns } = await github.rest.checks.listForRef({
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Auto-merge PR
if: steps.ci-status.outputs.result == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.pulls.merge({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-open-prs-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Get open PRs
id: open-prs
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: prs } = await github.rest.pulls.list({
Expand Down
Loading