Skip to content

Commit f37a4b9

Browse files
ci(deps): bump actions/github-script from 8 to 9
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 65df922 commit f37a4b9

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/breaking-change-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
# Uses a hidden HTML marker so subsequent pushes update the same comment
150150
# rather than creating a new one per commit.
151151
- name: Post or update PR comment
152-
uses: actions/github-script@v8
152+
uses: actions/github-script@v9
153153
with:
154154
script: |
155155
const fs = require('fs');

.github/workflows/integration-testing-regression.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
steps:
5757
- name: Check for fork PR
5858
id: fork-check
59-
uses: actions/github-script@v8
59+
uses: actions/github-script@v9
6060
with:
6161
result-encoding: string
6262
script: |

.github/workflows/integration-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Safety Check - Prevent Workflow Modification Attacks
3535
id: safety-check
36-
uses: actions/github-script@v8
36+
uses: actions/github-script@v9
3737
with:
3838
result-encoding: string
3939
script: |
@@ -70,7 +70,7 @@ jobs:
7070
return 'true';
7171
7272
- name: Collaborator Check
73-
uses: actions/github-script@v8
73+
uses: actions/github-script@v9
7474
id: collab-check
7575
with:
7676
result-encoding: string

.github/workflows/pr-automerge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- name: Check CI status
2424
id: ci-status
25-
uses: actions/github-script@v8
25+
uses: actions/github-script@v9
2626
with:
2727
script: |
2828
const { data: checkRuns } = await github.rest.checks.listForRef({
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Auto-merge PR
5353
if: steps.ci-status.outputs.result == 'true'
54-
uses: actions/github-script@v8
54+
uses: actions/github-script@v9
5555
with:
5656
script: |
5757
await github.rest.pulls.merge({

.github/workflows/slack-open-prs-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Get open PRs
1616
id: open-prs
17-
uses: actions/github-script@v8
17+
uses: actions/github-script@v9
1818
with:
1919
script: |
2020
const { data: prs } = await github.rest.pulls.list({

0 commit comments

Comments
 (0)