Skip to content

Commit dc7685b

Browse files
committed
chore: Update GitHub Actions to latest action versions
Bump actions/download-artifact from v4 to v7 and actions/cache from v4 to v5 in main workflow. This ensures the workflow uses the latest features and security updates from these actions.
1 parent 1e49e99 commit dc7685b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ jobs:
138138
run: npm install
139139

140140
- name: Download build artifacts
141-
uses: actions/download-artifact@v4
141+
uses: actions/download-artifact@v7
142142
with:
143143
name: build-output
144144

145145
# Cache Playwright browsers
146146
- name: Cache Playwright browsers
147-
uses: actions/cache@v4
147+
uses: actions/cache@v5
148148
id: playwright-cache
149149
with:
150150
path: ~/.cache/ms-playwright
@@ -204,7 +204,7 @@ jobs:
204204
run: npm install
205205

206206
- name: Download unit test coverage
207-
uses: actions/download-artifact@v4
207+
uses: actions/download-artifact@v7
208208
with:
209209
name: build-output
210210
path: .
@@ -213,25 +213,25 @@ jobs:
213213
run: mkdir -p coverage/e2e coverage/merged
214214

215215
- name: Download coverage shard 1
216-
uses: actions/download-artifact@v4
216+
uses: actions/download-artifact@v7
217217
with:
218218
name: coverage-shard-1
219219
path: coverage/e2e/shard-1
220220

221221
- name: Download coverage shard 2
222-
uses: actions/download-artifact@v4
222+
uses: actions/download-artifact@v7
223223
with:
224224
name: coverage-shard-2
225225
path: coverage/e2e/shard-2
226226

227227
- name: Download coverage shard 3
228-
uses: actions/download-artifact@v4
228+
uses: actions/download-artifact@v7
229229
with:
230230
name: coverage-shard-3
231231
path: coverage/e2e/shard-3
232232

233233
- name: Download coverage shard 4
234-
uses: actions/download-artifact@v4
234+
uses: actions/download-artifact@v7
235235
with:
236236
name: coverage-shard-4
237237
path: coverage/e2e/shard-4
@@ -280,7 +280,7 @@ jobs:
280280
run: npm install
281281

282282
- name: Download build artifacts
283-
uses: actions/download-artifact@v4
283+
uses: actions/download-artifact@v7
284284
with:
285285
name: build-output
286286

@@ -343,7 +343,7 @@ jobs:
343343
run: npm install
344344

345345
- name: Download build artifacts
346-
uses: actions/download-artifact@v4
346+
uses: actions/download-artifact@v7
347347
with:
348348
name: build-output
349349

0 commit comments

Comments
 (0)