Skip to content

Commit 71f6e46

Browse files
Bump actions/github-script from 7 to 9
Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0f65b22 commit 71f6e46

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/pr-integration-on-demand.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
mode: ${{ steps.matrix.outputs.mode }}
5757
steps:
5858
- name: Verify commenter has write permission
59-
uses: actions/github-script@v7
59+
uses: actions/github-script@v9
6060
with:
6161
script: |
6262
const { data: perm } = await github.rest.repos.getCollaboratorPermissionLevel({
@@ -73,7 +73,7 @@ jobs:
7373
}
7474
7575
- name: React 👀 to the trigger comment
76-
uses: actions/github-script@v7
76+
uses: actions/github-script@v9
7777
with:
7878
script: |
7979
await github.rest.reactions.createForIssueComment({
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name: Resolve PR head SHA
8787
id: pr
88-
uses: actions/github-script@v7
88+
uses: actions/github-script@v9
8989
with:
9090
script: |
9191
const { data: pr } = await github.rest.pulls.get({
@@ -209,7 +209,7 @@ jobs:
209209
210210
- name: Comment outcome on the PR
211211
if: always()
212-
uses: actions/github-script@v7
212+
uses: actions/github-script@v9
213213
with:
214214
script: |
215215
const ok = '${{ needs.integration-tests.result }}' === 'success';

.github/workflows/pr-matrix-on-demand.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# external user commenting on a fork PR could burn our CI minutes
4747
# and potentially exfiltrate secrets via a malicious build.
4848
- name: Verify commenter has write permission
49-
uses: actions/github-script@v7
49+
uses: actions/github-script@v9
5050
with:
5151
script: |
5252
const { data: perm } = await github.rest.repos.getCollaboratorPermissionLevel({
@@ -64,7 +64,7 @@ jobs:
6464
6565
# Visible feedback to the commenter that we picked up the trigger.
6666
- name: React 👀 to the trigger comment
67-
uses: actions/github-script@v7
67+
uses: actions/github-script@v9
6868
with:
6969
script: |
7070
await github.rest.reactions.createForIssueComment({
@@ -79,7 +79,7 @@ jobs:
7979
# firing on closed PRs is almost always a mistake.
8080
- name: Resolve PR head SHA
8181
id: pr
82-
uses: actions/github-script@v7
82+
uses: actions/github-script@v9
8383
with:
8484
script: |
8585
const { data: pr } = await github.rest.pulls.get({
@@ -146,7 +146,7 @@ jobs:
146146
runs-on: ubuntu-latest
147147
steps:
148148
- name: Comment outcome
149-
uses: actions/github-script@v7
149+
uses: actions/github-script@v9
150150
with:
151151
script: |
152152
const ok = '${{ needs.verify.result }}' === 'success';

0 commit comments

Comments
 (0)