From 516b9e6addee5c4107261ff357771bf3ea3efe73 Mon Sep 17 00:00:00 2001 From: Tim Schendekehl Date: Tue, 11 Jun 2024 21:14:06 +0200 Subject: [PATCH] Fix bugzilla 24600 - DMD nightly builds are outdated (#16580) The artifact names have been changed in https://github.com/dlang/installer/commit/a8422151226d92f22fc2b83ae3713005bbf22f20, 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 --- .github/workflows/nightlies.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightlies.yml b/.github/workflows/nightlies.yml index 4f3bb59976..bf55dff531 100644 --- a/.github/workflows/nightlies.yml +++ b/.github/workflows/nightlies.yml @@ -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/ #################################################################