Skip to content

Commit 1cfba39

Browse files
authored
[workflow] Bump GitHub actions/github-script packages to v8 (#13113)
1 parent 240cc1f commit 1cfba39

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/create_pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
2323
- name: Create pull request for ${{ github.event.client_payload.ReleaseBranchName }}
2424
id: create-pr
25-
uses: actions/github-script@v7
25+
uses: actions/github-script@v8
2626
with:
2727
github-token: ${{secrets.GITHUB_TOKEN}}
2828
script: |
@@ -51,7 +51,7 @@ jobs:
5151
}
5252
5353
- name: Request reviewers
54-
uses: actions/github-script@v7
54+
uses: actions/github-script@v8
5555
with:
5656
github-token: ${{secrets.PRAPPROVAL_SECRET}}
5757
script: |

.github/workflows/merge_pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sleep 30
2525
2626
- name: Approve pull request by GitHub-Actions bot
27-
uses: actions/github-script@v7
27+
uses: actions/github-script@v8
2828
with:
2929
github-token: ${{secrets.PRAPPROVAL_SECRET}}
3030
script: |
@@ -36,7 +36,7 @@ jobs:
3636
});
3737
3838
- name: Merge pull request for ${{ github.event.client_payload.ReleaseBranchName }}
39-
uses: actions/github-script@v7
39+
uses: actions/github-script@v8
4040
with:
4141
github-token: ${{secrets.GITHUB_TOKEN}}
4242
script: |

.github/workflows/update_github_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Update release for ${{ github.event.client_payload.ReleaseBranchName }}
14-
uses: actions/github-script@v7
14+
uses: actions/github-script@v8
1515
with:
1616
github-token: ${{secrets.GITHUB_TOKEN}}
1717
script: |

0 commit comments

Comments
 (0)