Skip to content

Commit 8d05d99

Browse files
Bump actions/github-script from 7 to 8 (#1721)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 12e3ea8 commit 8d05d99

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/try-runtime-gate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Verify requester is trusted
2020
id: authz
21-
uses: actions/github-script@v7
21+
uses: actions/github-script@v8
2222
with:
2323
script: |
2424
const assoc = context.payload.comment.author_association;
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Reject if untrusted
2929
if: fromJSON(steps.authz.outputs.result).ok != true
30-
uses: actions/github-script@v7
30+
uses: actions/github-script@v8
3131
with:
3232
script: |
3333
await github.issues.createComment({
@@ -54,7 +54,7 @@ jobs:
5454
echo "labels=$(cat labels.json)" >> "$GITHUB_OUTPUT"
5555
5656
- name: Add labels to PR
57-
uses: actions/github-script@v7
57+
uses: actions/github-script@v8
5858
with:
5959
script: |
6060
const ls = JSON.parse(process.env.LABELS);
@@ -68,7 +68,7 @@ jobs:
6868
LABELS: ${{ steps.labels.outputs.labels }}
6969

7070
- name: Acknowledge
71-
uses: actions/github-script@v7
71+
uses: actions/github-script@v8
7272
with:
7373
script: |
7474
await github.issues.createComment({

.github/workflows/try-runtime-pr.yml

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

8585
- name: Post comment to PR
8686
if: always()
87-
uses: actions/github-script@v7
87+
uses: actions/github-script@v8
8888
with:
8989
script: |
9090
const fs = require('fs');

0 commit comments

Comments
 (0)