Skip to content

Commit c7ac80c

Browse files
committed
update actions/download-artifact
This one wasn't throwing warnings, but has also been updated with the same deprecation timeframe. It's also incompatible with actions/upload-artifact@v4.
1 parent bcaa508 commit c7ac80c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/validate.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ jobs:
374374
cabal-version: latest # default, we are not using it in this job
375375

376376
- name: Download cabal executable from workflow artifacts
377-
uses: actions/download-artifact@v3
377+
uses: actions/download-artifact@v4
378378
with:
379379
name: cabal-${{ runner.os }}-x86_64
380380
path: cabal-head
@@ -399,19 +399,19 @@ jobs:
399399
needs: [validate, validate-old-ghcs, build-alpine, dogfooding]
400400

401401
steps:
402-
- uses: actions/download-artifact@v3
402+
- uses: actions/download-artifact@v4
403403
with:
404404
name: cabal-Windows-x86_64
405405

406-
- uses: actions/download-artifact@v3
406+
- uses: actions/download-artifact@v4
407407
with:
408408
name: cabal-Linux-x86_64
409409

410-
- uses: actions/download-artifact@v3
410+
- uses: actions/download-artifact@v4
411411
with:
412412
name: cabal-Linux-static-x86_64
413413

414-
- uses: actions/download-artifact@v3
414+
- uses: actions/download-artifact@v4
415415
with:
416416
name: cabal-macOS-x86_64
417417

@@ -429,7 +429,7 @@ jobs:
429429
cabal-head-macOS-x86_64.tar.gz
430430
431431
# We use this job as a summary of the workflow
432-
# It will fail if any of the previous jobs does it
432+
# It will fail if any of the previous jobs does
433433
# This way we can use it exclusively in branch protection rules
434434
# and abstract away the concrete jobs of the workflow, including their names
435435
validate-post-job:

0 commit comments

Comments
 (0)