Skip to content

Commit 65dbc67

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

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/changelog-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
files: '**/changelog.d/**'
2929

3030
- name: Enforce Label
31-
uses: actions/github-script@v7.1.0
31+
uses: actions/github-script@v8
3232
if: github.event.pull_request.draft == false
3333
with:
3434
script: |

.github/workflows/compare-golden-budgets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: ./scripts/eval-percent-diff.sh -t ${{ github.event.pull_request.base.sha }} 2>&1 | tee output.log
2626

2727
- name: Comment script output on PR
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v8
2929
with:
3030
github-token: ${{ secrets.GITHUB_TOKEN }}
3131
script: |

.github/workflows/manual-benchmark.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fetch-depth: 100
3636

3737
- name: React With Rocket
38-
uses: actions/github-script@v7.1.0
38+
uses: actions/github-script@v8
3939
with:
4040
script: |
4141
github.rest.reactions.createForIssueComment({
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Extract Benchmark Name
4949
id: extract-benchmark
50-
uses: actions/github-script@v7.1.0
50+
uses: actions/github-script@v8
5151
with:
5252
script: |
5353
const regex = /^\/benchmark\s*([^\s]*)\s*(ghc96|ghc98|ghc910)?\s*$/;
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Extract Branch Name
6464
id: extract-branch
65-
uses: actions/github-script@v7.1.0
65+
uses: actions/github-script@v8
6666
with:
6767
script: |
6868
async function isPullRequest() {
@@ -106,7 +106,7 @@ jobs:
106106
}
107107
108108
- name: Publish GH Action Link
109-
uses: actions/github-script@v7.1.0
109+
uses: actions/github-script@v8
110110
with:
111111
script: |
112112
async function getJobUrl() {
@@ -135,7 +135,7 @@ jobs:
135135

136136

137137
- name: Publish Results
138-
uses: actions/github-script@v7.1.0
138+
uses: actions/github-script@v8
139139
with:
140140
script: |
141141
const fs = require("fs");

.github/workflows/slack-message-broker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: [ubuntu-latest]
3030
steps:
3131
- name: Prepare Slack Message
32-
uses: actions/github-script@v7.1.0
32+
uses: actions/github-script@v8
3333
id: prepare-slack-message
3434

3535
with:

.github/workflows/triage-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
issues: write
1616
steps:
1717
- name: Add Label
18-
uses: actions/github-script@v7.1.0
18+
uses: actions/github-script@v8
1919
with:
2020
script: |
2121
const INTERNAL_LABELS = ["Internal", "status: triaged"];

0 commit comments

Comments
 (0)