Skip to content

Commit 063b1d3

Browse files
build(deps): bump actions/github-script from 7.0.1 to 8.0.0
Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@60a0d83...ed59741) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 76a39f5 commit 063b1d3

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/cleanup_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# Find and update the '## Coverage Report' comment in the PR
5454
- name: 'Update coverage comment in PR'
5555
# Pin action to full length commit SHA
56-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
56+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5757
with:
5858
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
5959
script: |

.github/workflows/label_commands.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: 'Remove label'
5252
# Pin action to full length commit SHA
53-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
53+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5454
with:
5555
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
5656
script: |
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: 'Add in-progress label'
6969
# Pin action to full length commit SHA
70-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
70+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
7171
with:
7272
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
7373
script: |
@@ -222,7 +222,7 @@ jobs:
222222
# Run the step regardless of the outcome of previous steps:
223223
if: always()
224224
# Pin action to full length commit SHA
225-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
225+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
226226
with:
227227
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
228228
script: |

.github/workflows/label_good_first_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: 'Add "Good First PR" label if PR references a "Good First Issue"'
7676
if: ${{ steps.check-pr.outputs.good-first-pr == 'true' }}
7777
# Pin action to full-length commit SHA
78-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
78+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
7979
with:
8080
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
8181
script: |

.github/workflows/labeler.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: 'Add "First-time Contributor" label if PR is from a first-time contributor'
6969
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}
7070
# Pin action to full-length commit SHA
71-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
71+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
7272
with:
7373
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
7474
script: |
@@ -93,7 +93,7 @@ jobs:
9393
- name: 'Add "Needs Review" label if PR is opened and not draft'
9494
if: ${{ github.event.action == 'opened' && github.event.pull_request.draft == false }}
9595
# Pin action to full length commit SHA
96-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
96+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
9797
with:
9898
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
9999
script: |
@@ -108,7 +108,7 @@ jobs:
108108
- name: 'Add "Needs Review" label if PR is ready for review or review is requested'
109109
if: ${{ github.event.action == 'ready_for_review' || github.event.action == 'review_requested' }}
110110
# Pin action to full length commit SHA
111-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
111+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
112112
with:
113113
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
114114
script: |
@@ -123,7 +123,7 @@ jobs:
123123
- name: 'Remove "Needs Review" label if PR is converted to draft or closed'
124124
if: ${{ github.event.action == 'converted_to_draft' || github.event.action == 'closed' }}
125125
# Pin action to full length commit SHA
126-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
126+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
127127
with:
128128
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
129129
script: |
@@ -141,7 +141,7 @@ jobs:
141141
# Remove "Needs Review" and "Needs Changes" labels when "Ready To Merge" is assigned:
142142
- name: 'Remove "Needs Review" and "Needs Changes" labels when "Ready To Merge" is assigned'
143143
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'Ready To Merge' }}
144-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
144+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
145145
with:
146146
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
147147
script: |
@@ -163,7 +163,7 @@ jobs:
163163
- name: 'Remove "First-time Contributor" label from other open PRs of same author if PR is merged'
164164
if: ${{ github.event.action == 'closed' && github.event.pull_request.merged == true }}
165165
# Pin action to full length commit SHA
166-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
166+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
167167
with:
168168
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
169169
script: |

.github/workflows/run_tests_coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
- name: 'Post report as comment to PR'
256256
if: github.event_name == 'pull_request_target' && steps.check-changed.outputs.skip == 'false'
257257
# Pin action to full length commit SHA
258-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
258+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
259259
with:
260260
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
261261
script: |
@@ -286,7 +286,7 @@ jobs:
286286
- name: 'Post report as comment to commit'
287287
if: github.event_name == 'push' && steps.check-changed.outputs.skip == 'false'
288288
# Pin action to full length commit SHA
289-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
289+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
290290
with:
291291
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
292292
script: |

.github/workflows/slash_commands.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# Add "bot: In progress" label to the issue / PR:
4747
- name: 'Add in-progress label'
4848
# Pin action to full length commit SHA
49-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
49+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5050
with:
5151
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
5252
script: |
@@ -59,7 +59,7 @@ jobs:
5959
6060
# Add initial reaction to comment with slash command:
6161
- name: 'Add initial reaction'
62-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
62+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
6363
with:
6464
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
6565
script: |
@@ -269,7 +269,7 @@ jobs:
269269
- name: 'Notify of command failure'
270270
if: |
271271
contains(needs.*.result, 'failure')
272-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
272+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
273273
with:
274274
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
275275
script: |
@@ -288,7 +288,7 @@ jobs:
288288
# Run the step regardless of the outcome of previous steps:
289289
if: always()
290290
# Pin action to full length commit SHA
291-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
291+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
292292
with:
293293
github-token: ${{ secrets.STDLIB_BOT_PAT_REPO_WRITE }}
294294
script: |

0 commit comments

Comments
 (0)