Skip to content

Commit 74c2262

Browse files
chore: update actions/checkout and actions/github-script (#956)
Co-authored-by: Julius Marminge <julius0216@outlook.com>
1 parent 224aceb commit 74c2262

4 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
runs-on: blacksmith-4vcpu-ubuntu-2404
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Bun
1818
uses: oven-sh/setup-bun@v2
1919
with:
2020
bun-version-file: package.json
2121

2222
- name: Setup Node
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version-file: package.json
2626

2727
- name: Cache Bun and Turbo
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: |
3131
~/.bun/install/cache
@@ -35,7 +35,7 @@ jobs:
3535
${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}-
3636
3737
- name: Cache Playwright browsers
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.cache/ms-playwright
4141
key: ${{ runner.os }}-playwright-${{ hashFiles('bun.lock') }}
@@ -78,15 +78,15 @@ jobs:
7878
runs-on: ubuntu-24.04
7979
steps:
8080
- name: Checkout
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v6
8282

8383
- name: Setup Bun
8484
uses: oven-sh/setup-bun@v2
8585
with:
8686
bun-version-file: package.json
8787

8888
- name: Setup Node
89-
uses: actions/setup-node@v4
89+
uses: actions/setup-node@v6
9090
with:
9191
node-version-file: package.json
9292

.github/workflows/pr-size.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- id: config
1818
name: Build PR size label config
19-
uses: actions/github-script@v7
19+
uses: actions/github-script@v8
2020
with:
2121
result-encoding: string
2222
script: |
@@ -64,7 +64,7 @@ jobs:
6464
issues: write
6565
steps:
6666
- name: Ensure PR size labels exist
67-
uses: actions/github-script@v7
67+
uses: actions/github-script@v8
6868
env:
6969
PR_SIZE_LABELS_JSON: ${{ needs.prepare-config.outputs.labels_json }}
7070
with:
@@ -125,7 +125,7 @@ jobs:
125125
cancel-in-progress: true
126126
steps:
127127
- name: Sync PR size label
128-
uses: actions/github-script@v7
128+
uses: actions/github-script@v8
129129
env:
130130
PR_SIZE_LABELS_JSON: ${{ needs.prepare-config.outputs.labels_json }}
131131
with:

.github/workflows/pr-vouch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
targets: ${{ steps.collect.outputs.targets }}
2626
steps:
2727
- id: collect
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v8
2929
with:
3030
script: |
3131
if (context.eventName === "pull_request_target") {
@@ -85,7 +85,7 @@ jobs:
8585
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8686

8787
- name: Sync PR labels
88-
uses: actions/github-script@v7
88+
uses: actions/github-script@v8
8989
env:
9090
PR_NUMBER: ${{ matrix.target.number }}
9191
VOUCH_STATUS: ${{ steps.vouch.outputs.status }}

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
ref: ${{ github.sha }}
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131

3232
- id: release_meta
3333
name: Resolve release version
@@ -61,7 +61,7 @@ jobs:
6161
bun-version-file: package.json
6262

6363
- name: Setup Node
64-
uses: actions/setup-node@v4
64+
uses: actions/setup-node@v6
6565
with:
6666
node-version-file: package.json
6767

@@ -107,7 +107,7 @@ jobs:
107107
arch: x64
108108
steps:
109109
- name: Checkout
110-
uses: actions/checkout@v4
110+
uses: actions/checkout@v6
111111
with:
112112
ref: ${{ needs.preflight.outputs.ref }}
113113
fetch-depth: 0
@@ -118,7 +118,7 @@ jobs:
118118
bun-version-file: package.json
119119

120120
- name: Setup Node
121-
uses: actions/setup-node@v4
121+
uses: actions/setup-node@v6
122122
with:
123123
node-version-file: package.json
124124

@@ -217,7 +217,7 @@ jobs:
217217
fi
218218
219219
- name: Upload build artifacts
220-
uses: actions/upload-artifact@v4
220+
uses: actions/upload-artifact@v7
221221
with:
222222
name: desktop-${{ matrix.platform }}-${{ matrix.arch }}
223223
path: release-publish/*
@@ -229,7 +229,7 @@ jobs:
229229
runs-on: ubuntu-24.04
230230
steps:
231231
- name: Checkout
232-
uses: actions/checkout@v4
232+
uses: actions/checkout@v6
233233
with:
234234
ref: ${{ needs.preflight.outputs.ref }}
235235

@@ -239,7 +239,7 @@ jobs:
239239
bun-version-file: package.json
240240

241241
- name: Setup Node
242-
uses: actions/setup-node@v4
242+
uses: actions/setup-node@v6
243243
with:
244244
node-version-file: package.json
245245
registry-url: https://registry.npmjs.org
@@ -262,17 +262,17 @@ jobs:
262262
runs-on: ubuntu-24.04
263263
steps:
264264
- name: Checkout
265-
uses: actions/checkout@v4
265+
uses: actions/checkout@v6
266266
with:
267267
ref: ${{ needs.preflight.outputs.ref }}
268268

269269
- name: Setup Node
270-
uses: actions/setup-node@v4
270+
uses: actions/setup-node@v6
271271
with:
272272
node-version-file: package.json
273273

274274
- name: Download all desktop artifacts
275-
uses: actions/download-artifact@v4
275+
uses: actions/download-artifact@v8
276276
with:
277277
pattern: desktop-*
278278
merge-multiple: true
@@ -309,7 +309,7 @@ jobs:
309309
runs-on: ubuntu-24.04
310310
steps:
311311
- name: Checkout
312-
uses: actions/checkout@v4
312+
uses: actions/checkout@v6
313313
with:
314314
ref: main
315315
fetch-depth: 0
@@ -320,7 +320,7 @@ jobs:
320320
bun-version-file: package.json
321321

322322
- name: Setup Node
323-
uses: actions/setup-node@v4
323+
uses: actions/setup-node@v6
324324
with:
325325
node-version-file: package.json
326326

0 commit comments

Comments
 (0)