From e85c6ae96a6f5c7baf5ea6f4976b8237c2cd7e98 Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Sun, 3 Mar 2024 12:43:43 +0100 Subject: [PATCH] bump all download to v4 --- .github/workflows/create-release.yml | 15 +++++++++------ .github/workflows/master-build.yml | 15 +++++++++------ .github/workflows/pr-build.yml | 15 +++++++++------ 3 files changed, 27 insertions(+), 18 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 1b47ee99..0bb00ac8 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -36,9 +36,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: linux-x64-* + pattern: linux-* + merge-multiple: true path: build/artifacts - name: build dist run: | @@ -80,9 +81,10 @@ jobs: arch: [arm64, x64] steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: darwin-x64-* + pattern: darwin-* + merge-multiple: true path: build/artifacts - name: build dist run: | @@ -122,9 +124,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: win32-* + pattern: win32-* + merge-multiple: true path: build/artifacts - name: build dist run: | diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index a1df2397..40c0b7fe 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -51,9 +51,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: linux-* + pattern: linux-* + merge-multiple: true path: build/artifacts - name: build dist run: | @@ -114,9 +115,10 @@ jobs: arch: [arm64, x64] steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: darwin-* + pattern: darwin-* + merge-multiple: true path: build/artifacts - name: build dist run: | @@ -173,9 +175,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: win32-* + pattern: win32-* + merge-multiple: true path: build/artifacts - name: build dist run: | diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 3f33285b..7c378cb9 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -60,9 +60,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: linux-* + pattern: linux-* + merge-multiple: true path: build/artifacts - name: build dist run: | @@ -124,9 +125,10 @@ jobs: arch: [x64, arm64] steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: darwin-* + pattern: darwin-* + merge-multiple: true path: build/artifacts - name: build dist run: | @@ -183,9 +185,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: win32-* + pattern: win32-* + merge-multiple: true path: build/artifacts - name: build dist run: |