From 131e0585b60ee23afebd01e0cd09301731aa3d6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 02:31:27 +0000 Subject: [PATCH] chore(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/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41770d5..4848314 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,17 +26,17 @@ jobs: run: dotnet pack -c Release /p:Version=${{ github.event.release.tag_name }} /p:PackageReleaseNotes="See https://github.com/Abhith/Code.Library/releases/tag/${{ github.event.release.tag_name }}" working-directory: ./src - name: Archive Code.Library NuGet Package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Code.Library path: ./src/Code.Library/bin/Release/Code.Library.${{ github.event.release.tag_name }}.nupkg - name: Archive Code.Library.Application NuGet Package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Code.Library.Application path: ./src/Code.Library.Application/bin/Release/Code.Library.Application.${{ github.event.release.tag_name }}.nupkg - name: Archive Code.Library.AspNetCore NuGet Package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Code.Library.AspNetCore path: ./src/Code.Library.AspNetCore/bin/Release/Code.Library.AspNetCore.${{ github.event.release.tag_name }}.nupkg