Skip to content

Commit b56aa67

Browse files
Bump actions/github-script from 8 to 9
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...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 b1f07da commit b56aa67

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/publishVersionCheckResults.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626

2727
- name: Search version increment git patch
28-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
28+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
2929
id: search-patch
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -44,7 +44,7 @@ jobs:
4444
persist-credentials: false #Opt out from persisting the default Github-token authentication in order to enable use of the bot's PAT when pushing below
4545

4646
- name: Download version increment git patch
47-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
47+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4848
id: fetch-patch
4949
if: steps.search-patch.outputs.result
5050
with:
@@ -106,7 +106,7 @@ jobs:
106106
direction: last
107107

108108
- name: Add or update information comment
109-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
109+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
110110
if: always() && steps.search-patch.outputs.result
111111
env:
112112
FILELIST: ${{ steps.git-commit.outputs.file-list }}

.github/workflows/rebase-upstream.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pull-requests: write
1616
steps:
1717
- name: Add comment with rebase instructions
18-
uses: actions/github-script@v8
18+
uses: actions/github-script@v9
1919
with:
2020
script: |
2121
const comment = `### 🔄 Rebase on Upstream Master
@@ -53,7 +53,7 @@ jobs:
5353
steps:
5454
- name: Check if user is authorized
5555
id: check-auth
56-
uses: actions/github-script@v8
56+
uses: actions/github-script@v9
5757
with:
5858
script: |
5959
const author_association = context.payload.comment.author_association;
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Add rocket reaction to acknowledge command
7575
if: steps.check-auth.outputs.result == 'true'
76-
uses: actions/github-script@v8
76+
uses: actions/github-script@v9
7777
with:
7878
script: |
7979
github.rest.reactions.createForIssueComment({
@@ -86,7 +86,7 @@ jobs:
8686
- name: Get PR branch information
8787
if: steps.check-auth.outputs.result == 'true'
8888
id: pr-info
89-
uses: actions/github-script@v8
89+
uses: actions/github-script@v9
9090
with:
9191
script: |
9292
const { data: pr } = await github.rest.pulls.get({
@@ -197,7 +197,7 @@ jobs:
197197
198198
- name: Add success comment and reaction
199199
if: steps.check-auth.outputs.result == 'true' && steps.rebase.outputs.rebase_failed != 'true' && steps.push.outputs.push_failed != 'true'
200-
uses: actions/github-script@v8
200+
uses: actions/github-script@v9
201201
with:
202202
script: |
203203
await github.rest.reactions.createForIssueComment({
@@ -216,7 +216,7 @@ jobs:
216216
217217
- name: Add rebase failure comment and reaction
218218
if: steps.check-auth.outputs.result == 'true' && failure() && steps.rebase.outputs.rebase_failed == 'true'
219-
uses: actions/github-script@v8
219+
uses: actions/github-script@v9
220220
with:
221221
script: |
222222
await github.rest.reactions.createForIssueComment({
@@ -256,7 +256,7 @@ jobs:
256256
257257
- name: Add push failure comment and reaction
258258
if: steps.check-auth.outputs.result == 'true' && failure() && steps.push.outputs.push_failed == 'true'
259-
uses: actions/github-script@v8
259+
uses: actions/github-script@v9
260260
with:
261261
script: |
262262
await github.rest.reactions.createForIssueComment({

.github/workflows/sync-upstream.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
steps:
109109
- name: Check user permission
110110
id: check
111-
uses: actions/github-script@v8
111+
uses: actions/github-script@v9
112112
with:
113113
result-encoding: string
114114
script: |
@@ -123,7 +123,7 @@ jobs:
123123
124124
- name: Add unauthorized reaction
125125
if: steps.check.outputs.result != 'true'
126-
uses: actions/github-script@v8
126+
uses: actions/github-script@v9
127127
with:
128128
script: |
129129
await github.rest.reactions.createForIssueComment({
@@ -145,7 +145,7 @@ jobs:
145145
run: exit 1
146146

147147
- name: Add rocket reaction
148-
uses: actions/github-script@v8
148+
uses: actions/github-script@v9
149149
with:
150150
script: |
151151
await github.rest.reactions.createForIssueComment({
@@ -244,7 +244,7 @@ jobs:
244244
245245
- name: Add success comment
246246
if: steps.push.outputs.success == 'true'
247-
uses: actions/github-script@v8
247+
uses: actions/github-script@v9
248248
with:
249249
script: |
250250
await github.rest.issues.createComment({
@@ -263,7 +263,7 @@ jobs:
263263
264264
- name: Add failure comment
265265
if: steps.push.outputs.success == 'false'
266-
uses: actions/github-script@v8
266+
uses: actions/github-script@v9
267267
with:
268268
script: |
269269
const comment = `❌ Sync failed. Please check the workflow logs for details.

0 commit comments

Comments
 (0)