Fix bugzilla 24600 - DMD nightly builds are outdated (#16580)

The artifact names have been changed in
a842215122,
because version 4 of actions/upload-artifact needs unique names.
Also use version 4 of actions/download-artifact and use a pattern instead of a single name.

See also https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md
This commit is contained in:
Tim Schendekehl 2024-06-11 21:14:06 +02:00 committed by GitHub
parent a3eb99191d
commit 516b9e6add
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,9 +36,10 @@ jobs:
# Fetch all artifacts from the jobs defined above
#
- name: Download generated releases from the artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dmd-release
pattern: dmd-release-*
merge-multiple: true
path: ~/artifacts/
#################################################################