From 842818ecb5aa064e5885781fcb5ac10f02421d68 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:47:31 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 181e7de14..25298eeb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Run tests run: dotnet test --collect:"XPlat Code Coverage" --logger "GitHubActions" - name: Upload coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Code coverage ${{ matrix.os }} path: "**/coverage.cobertura.xml" @@ -80,7 +80,7 @@ jobs: - name: Create packages run: dotnet pack --configuration Release --output ./packages - name: Upload a Build Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: NuGet packages path: packages/*.*