Skip to content

Commit 9ebb927

Browse files
Update actions/github-script action to v8
1 parent 0e86b2c commit 9ebb927

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/fork-pr-notice.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.event.pull_request.base.repo.full_name != github.event.pull_request.head.repo.full_name
1616
steps:
1717
- name: Add auto-generated commit warning
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
with:
2020
script: |
2121
github.rest.issues.createComment({

.github/workflows/post-release.yml

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

1414
steps:
1515
- name: Trigger pipeline
16-
uses: actions/github-script@v7
16+
uses: actions/github-script@v8
1717
with:
1818
github-token: ${{ secrets.ENTERPRISE_ACTIONS_TOKEN }}
1919
script: |

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pull-requests: read
1616
steps:
1717
- name: Add notice
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
if: contains(github.event.pull_request.labels.*.name, 'X-Blocked')
2020
with:
2121
script: |
@@ -39,7 +39,7 @@ jobs:
3939
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN_READ_ORG }}
4040
- name: Add label
4141
if: steps.teams.outputs.isTeamMember == 'false'
42-
uses: actions/github-script@v7
42+
uses: actions/github-script@v8
4343
with:
4444
script: |
4545
github.rest.issues.addLabels({
@@ -58,7 +58,7 @@ jobs:
5858
github.event.pull_request.head.repo.full_name != github.repository
5959
steps:
6060
- name: Close pull request
61-
uses: actions/github-script@v7
61+
uses: actions/github-script@v8
6262
with:
6363
script: |
6464
github.rest.issues.createComment({

0 commit comments

Comments
 (0)