From 740c767b213832015830c5f98103988c0c3bf247 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 17:58:50 +0000 Subject: [PATCH] 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/branches.yml | 2 +- .github/workflows/master.yml | 2 +- .github/workflows/publish.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/branches.yml b/.github/workflows/branches.yml index 494f1c75..d2e02ead 100644 --- a/.github/workflows/branches.yml +++ b/.github/workflows/branches.yml @@ -48,7 +48,7 @@ jobs: - name: Create NuGet packages run: dotnet pack -c Release --no-restore --no-build -o nupkg - name: Upload nuget packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nupkg path: nupkg diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 3fc48c41..638d0141 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -49,7 +49,7 @@ jobs: - name: Create NuGet packages run: dotnet pack -c Release --no-restore --no-build -o nupkg - name: Upload nuget packages as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nupkg path: nupkg diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a7ebfb2e..d882f674 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -51,7 +51,7 @@ jobs: - name: Create NuGet packages run: dotnet pack -c Release --no-restore --no-build -o nupkg - name: Upload nuget packages as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nupkg path: nupkg