From 0688e5ad8e41386e2829b44a841bf1084a6e33be Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Mon, 15 Jul 2024 14:52:15 +0100 Subject: [PATCH] Update the upload-artifact CI build action to version 4 --- .github/workflows/build_and_test.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 38b00071f49..54c736cb7a5 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -27,7 +27,7 @@ jobs: - name: Build run: dotnet fake build --parallel 3 - name: publish build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: fake-artifacts + name: fake-artifacts-${{ matrix.os }} path: release/artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 91cc8fa4fb7..e37538785fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: - name: Build run: dotnet fake build -t Release_BuildAndTest --parallel 3 - name: publish build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fake-artifacts path: release/artifacts