From be8141459441aac16bb42c1a79a493d09a9a9302 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 02:47:35 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy-command.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8808b81..0efe083 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - run: dotnet build --no-restore - run: dotnet test --no-build - name: Publish NuGet artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nugets-${{ runner.os }} path: bin/Packages/${{ env.Configuration }} diff --git a/.github/workflows/deploy-command.yml b/.github/workflows/deploy-command.yml index 9bb96df..7258422 100644 --- a/.github/workflows/deploy-command.yml +++ b/.github/workflows/deploy-command.yml @@ -48,7 +48,7 @@ jobs: comment-id: ${{ github.event.client_payload.github.payload.comment.id }} body: "Pushed tag `${{ steps.tagpush.outputs.tag }}`" - name: Upload nugets to workflow artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nugets path: bin/Packages/${{ env.Configuration }}