Skip to content

Commit c8b3256

Browse files
committed
Update github actions version
1 parent 91f0cc1 commit c8b3256

15 files changed

+43
-43
lines changed

.github/workflows/add-good-first-issue-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Add label
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
with:
2020
github-token: ${{ secrets.GH_TOKEN }}
2121
script: |

.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Add ready-to-merge label
29-
uses: actions/github-script@v7
29+
uses: actions/github-script@v8
3030
with:
3131
github-token: ${{ secrets.GH_TOKEN }}
3232
script: |
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- name: Add do-not-merge label
81-
uses: actions/github-script@v7
81+
uses: actions/github-script@v8
8282
with:
8383
github-token: ${{ secrets.GH_TOKEN }}
8484
script: |
@@ -100,7 +100,7 @@ jobs:
100100
runs-on: ubuntu-latest
101101
steps:
102102
- name: Add autoupdate label
103-
uses: actions/github-script@v7
103+
uses: actions/github-script@v8
104104
with:
105105
github-token: ${{ secrets.GH_TOKEN }}
106106
script: |

.github/workflows/automerge-for-humans-merging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- name: Get PR authors
3030
id: authors
31-
uses: actions/github-script@v7
31+
uses: actions/github-script@v8
3232
with:
3333
script: |
3434
// Get paginated list of all commits in the PR
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Create commit message
6969
id: create-commit-message
70-
uses: actions/github-script@v7
70+
uses: actions/github-script@v8
7171
with:
7272
script: |
7373
const authors = ${{ steps.authors.outputs.result }};

.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Remove label
19-
uses: actions/github-script@v7
19+
uses: actions/github-script@v8
2020
with:
2121
github-token: ${{ secrets.GH_TOKEN }}
2222
script: |

.github/workflows/automerge-orphans.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
- name: Get list of orphans
19-
uses: actions/github-script@v7
19+
uses: actions/github-script@v8
2020
id: orphans
2121
with:
2222
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
github-token: "${{ secrets.GH_TOKEN_BOT_EVE }}"
2525

2626
- name: Label autoapproved
27-
uses: actions/github-script@v7
27+
uses: actions/github-script@v8
2828
with:
2929
github-token: ${{ secrets.GH_TOKEN }}
3030
script: |

.github/workflows/bounty-program-commands.yml

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

3333
steps:
3434
- name: ❌ @${{github.actor}} made an unauthorized attempt to use a Bounty Program's command
35-
uses: actions/github-script@v7
35+
uses: actions/github-script@v8
3636
with:
3737
github-token: ${{ secrets.GH_TOKEN }}
3838
script: |
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: Add label `bounty`
61-
uses: actions/github-script@v7
61+
uses: actions/github-script@v8
6262
with:
6363
github-token: ${{ secrets.GH_TOKEN }}
6464
script: |
@@ -99,7 +99,7 @@ jobs:
9999

100100
steps:
101101
- name: Remove label `bounty`
102-
uses: actions/github-script@v7
102+
uses: actions/github-script@v8
103103
with:
104104
github-token: ${{ secrets.GH_TOKEN }}
105105
script: |

.github/workflows/help-command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Add comment to PR
17-
uses: actions/github-script@v7
17+
uses: actions/github-script@v8
1818
with:
1919
github-token: ${{ secrets.GH_TOKEN }}
2020
script: |
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Add comment to Issue
46-
uses: actions/github-script@v7
46+
uses: actions/github-script@v8
4747
with:
4848
github-token: ${{ secrets.GH_TOKEN }}
4949
script: |

.github/workflows/notify-tsc-members-mention.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
- name: Setup Node.js
37-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@v6
3838
with:
3939
node-version: 16
4040
cache: 'npm'
@@ -61,7 +61,7 @@ jobs:
6161
run: npm install
6262
working-directory: ./.github/workflows/scripts/mailchimp
6363
- name: Send email with MailChimp
64-
uses: actions/github-script@v7
64+
uses: actions/github-script@v8
6565
env:
6666
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
6767
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
@@ -77,9 +77,9 @@ jobs:
7777
runs-on: ubuntu-latest
7878
steps:
7979
- name: Checkout repository
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v6
8181
- name: Setup Node.js
82-
uses: actions/setup-node@v4
82+
uses: actions/setup-node@v6
8383
with:
8484
node-version: 16
8585
cache: 'npm'
@@ -106,7 +106,7 @@ jobs:
106106
run: npm install
107107
working-directory: ./.github/workflows/scripts/mailchimp
108108
- name: Send email with MailChimp
109-
uses: actions/github-script@v7
109+
uses: actions/github-script@v8
110110
env:
111111
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
112112
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
@@ -122,9 +122,9 @@ jobs:
122122
runs-on: ubuntu-latest
123123
steps:
124124
- name: Checkout repository
125-
uses: actions/checkout@v4
125+
uses: actions/checkout@v6
126126
- name: Setup Node.js
127-
uses: actions/setup-node@v4
127+
uses: actions/setup-node@v6
128128
with:
129129
node-version: 16
130130
cache: 'npm'
@@ -151,7 +151,7 @@ jobs:
151151
run: npm install
152152
working-directory: ./.github/workflows/scripts/mailchimp
153153
- name: Send email with MailChimp
154-
uses: actions/github-script@v7
154+
uses: actions/github-script@v8
155155
env:
156156
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
157157
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
@@ -167,9 +167,9 @@ jobs:
167167
runs-on: ubuntu-latest
168168
steps:
169169
- name: Checkout repository
170-
uses: actions/checkout@v4
170+
uses: actions/checkout@v6
171171
- name: Setup Node.js
172-
uses: actions/setup-node@v4
172+
uses: actions/setup-node@v6
173173
with:
174174
node-version: 16
175175
cache: 'npm'
@@ -196,7 +196,7 @@ jobs:
196196
run: npm install
197197
working-directory: ./.github/workflows/scripts/mailchimp
198198
- name: Send email with MailChimp
199-
uses: actions/github-script@v7
199+
uses: actions/github-script@v8
200200
env:
201201
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
202202
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
@@ -212,9 +212,9 @@ jobs:
212212
runs-on: ubuntu-latest
213213
steps:
214214
- name: Checkout repository
215-
uses: actions/checkout@v4
215+
uses: actions/checkout@v6
216216
- name: Setup Node.js
217-
uses: actions/setup-node@v4
217+
uses: actions/setup-node@v6
218218
with:
219219
node-version: 16
220220
cache: 'npm'
@@ -241,7 +241,7 @@ jobs:
241241
run: npm install
242242
working-directory: ./.github/workflows/scripts/mailchimp
243243
- name: Send email with MailChimp
244-
uses: actions/github-script@v7
244+
uses: actions/github-script@v8
245245
env:
246246
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
247247
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
@@ -257,9 +257,9 @@ jobs:
257257
runs-on: ubuntu-latest
258258
steps:
259259
- name: Checkout repository
260-
uses: actions/checkout@v4
260+
uses: actions/checkout@v6
261261
- name: Setup Node.js
262-
uses: actions/setup-node@v4
262+
uses: actions/setup-node@v6
263263
with:
264264
node-version: 16
265265
cache: 'npm'
@@ -286,7 +286,7 @@ jobs:
286286
run: npm install
287287
working-directory: ./.github/workflows/scripts/mailchimp
288288
- name: Send email with MailChimp
289-
uses: actions/github-script@v7
289+
uses: actions/github-script@v8
290290
env:
291291
CALENDAR_ID: ${{ secrets.CALENDAR_ID }}
292292
CALENDAR_SERVICE_ACCOUNT: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}

.github/workflows/please-take-a-look-command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Check for Please Take a Look Command
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v8
2929
with:
3030
github-token: ${{ secrets.GH_TOKEN }}
3131
script: |

0 commit comments

Comments
 (0)