Skip to content

Commit 8f9c27c

Browse files
chore: CI: bump actions/github-script from 7 to 8 (#10648)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 715c53d commit 8f9c27c

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/awaiting-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Check awaiting-manual label
1313
id: check-awaiting-manual-label
1414
if: github.event_name == 'pull_request'
15-
uses: actions/github-script@v7
15+
uses: actions/github-script@v8
1616
with:
1717
script: |
1818
const { labels, number: prNumber } = context.payload.pull_request;

.github/workflows/awaiting-mathlib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Check awaiting-mathlib label
1313
id: check-awaiting-mathlib-label
1414
if: github.event_name == 'pull_request'
15-
uses: actions/github-script@v7
15+
uses: actions/github-script@v8
1616
with:
1717
script: |
1818
const { labels, number: prNumber } = context.payload.pull_request;

.github/workflows/check-stage0.yml

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

3232
- if: github.event_name == 'pull_request'
3333
name: Set label
34-
uses: actions/github-script@v7
34+
uses: actions/github-script@v8
3535
with:
3636
script: |
3737
const { owner, repo, number: issue_number } = context.issue;

.github/workflows/ci.yml

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

138138
- name: Configure build matrix
139139
id: set-matrix
140-
uses: actions/github-script@v7
140+
uses: actions/github-script@v8
141141
with:
142142
script: |
143143
const level = ${{ steps.set-level.outputs.check-level }};
@@ -350,7 +350,7 @@ jobs:
350350
content: |
351351
A build of `${{ github.ref_name }}`, triggered by event `${{ github.event_name }}`, [failed](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}).
352352
- if: contains(needs.*.result, 'failure')
353-
uses: actions/github-script@v7
353+
uses: actions/github-script@v8
354354
with:
355355
script: |
356356
core.setFailed('Some jobs failed')

.github/workflows/grove.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
# material.
111111
- id: deploy-alias
112112
if: ${{ steps.should-run.outputs.should-run == 'true' }}
113-
uses: actions/github-script@v7
113+
uses: actions/github-script@v8
114114
name: Compute Alias
115115
with:
116116
result-encoding: string

.github/workflows/labels-from-comments.yml

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

1818
steps:
1919
- name: Add label based on comment
20-
uses: actions/github-script@v7
20+
uses: actions/github-script@v8
2121
with:
2222
github-token: ${{ secrets.GITHUB_TOKEN }}
2323
script: |

.github/workflows/pr-body.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Check PR body
1313
if: github.event_name == 'pull_request'
14-
uses: actions/github-script@v7
14+
uses: actions/github-script@v8
1515
with:
1616
script: |
1717
const { title, body, labels, draft } = context.payload.pull_request;

.github/workflows/pr-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101

102102
- name: Report release status (short format)
103103
if: ${{ steps.workflow-info.outputs.pullRequestNumber != '' }}
104-
uses: actions/github-script@v7
104+
uses: actions/github-script@v8
105105
with:
106106
script: |
107107
await github.rest.repos.createCommitStatus({
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: Report release status (SHA-suffixed format)
117117
if: ${{ steps.workflow-info.outputs.pullRequestNumber != '' }}
118-
uses: actions/github-script@v7
118+
uses: actions/github-script@v8
119119
with:
120120
script: |
121121
await github.rest.repos.createCommitStatus({
@@ -129,7 +129,7 @@ jobs:
129129
130130
- name: Add label
131131
if: ${{ steps.workflow-info.outputs.pullRequestNumber != '' }}
132-
uses: actions/github-script@v7
132+
uses: actions/github-script@v8
133133
with:
134134
script: |
135135
await github.rest.issues.addLabels({
@@ -368,7 +368,7 @@ jobs:
368368
369369
- name: Report mathlib base
370370
if: ${{ steps.workflow-info.outputs.pullRequestNumber != '' && steps.ready.outputs.mathlib_ready == 'true' }}
371-
uses: actions/github-script@v7
371+
uses: actions/github-script@v8
372372
with:
373373
script: |
374374
const description =

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check PR title
13-
uses: actions/github-script@v7
13+
uses: actions/github-script@v8
1414
with:
1515
script: |
1616
const msg = context.payload.pull_request? context.payload.pull_request.title : context.payload.merge_group.head_commit.message;

0 commit comments

Comments
 (0)