From 7c12917c98036a470970ae7255b80987ff1485bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2024 06:07:35 +0000 Subject: [PATCH] Bump actions/upload-artifact 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] --- .../Console/ConsoleApp/.github/workflows/build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/Console/ConsoleApp/.github/workflows/build-and-deploy.yml b/templates/Console/ConsoleApp/.github/workflows/build-and-deploy.yml index 32109a8..ec7bf54 100644 --- a/templates/Console/ConsoleApp/.github/workflows/build-and-deploy.yml +++ b/templates/Console/ConsoleApp/.github/workflows/build-and-deploy.yml @@ -46,7 +46,7 @@ jobs: echo ${{ github.event.number }} > ./coveragereport/PullRequestNumber - name: Upload Code Coverage Report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: CodeCoverage path: coveragereport/ @@ -56,7 +56,7 @@ jobs: run: dotnet pack --configuration Release --no-build -o ./NuGet - name: Upload NuGet artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: NuGet path: ./NuGet