From 8a8791cd989ded69608a01e8f17217746617100e Mon Sep 17 00:00:00 2001 From: Ryan <20880060+Earu@users.noreply.github.com> Date: Sat, 5 Oct 2024 14:57:25 +0200 Subject: [PATCH] actions/upload-artifact@v3 is deprecated, move to v4 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a1b7ff..5cf8fb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ on: jobs: build: - name: Build & Publish + name: Build runs-on: ${{ matrix.os }} strategy: matrix: @@ -48,7 +48,7 @@ jobs: run: dotnet publish -c Release -r ${{ matrix.runtime }} --self-contained -p:PublishSingleFile=true -o ./publish/${{ matrix.os }}/${{ matrix.arch }} - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }}-${{ matrix.arch }} path: ./publish/${{ matrix.os }}/${{ matrix.arch }}