From 41ccfabe854f959aa140f09416c445a395ef1c32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 02:30:19 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet-package.yml | 6 +++--- .github/workflows/dotnet-runnable-container.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet-package.yml b/.github/workflows/dotnet-package.yml index bb496f4..cb01902 100644 --- a/.github/workflows/dotnet-package.yml +++ b/.github/workflows/dotnet-package.yml @@ -86,7 +86,7 @@ jobs: # .NET Test Upload Test Results from Testing - name: .NET Test Upload if: inputs.test - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test path: | @@ -96,7 +96,7 @@ jobs: # .NET Coverage Upload Results from Testing - name: .NET Coverage Upload if: inputs.test - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage path: | @@ -109,7 +109,7 @@ jobs: # .NET Upload NuGet Artifact - name: .NET Upload NuGet Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ github.event_name == 'release' && github.ref_type == 'tag' || github.event.release.tag_name }} with: name: nuget diff --git a/.github/workflows/dotnet-runnable-container.yml b/.github/workflows/dotnet-runnable-container.yml index eb22307..0b8ca25 100644 --- a/.github/workflows/dotnet-runnable-container.yml +++ b/.github/workflows/dotnet-runnable-container.yml @@ -119,7 +119,7 @@ jobs: # .NET Test Upload Test Results from Testing - name: .NET Test Upload if: inputs.test - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: test path: | @@ -129,7 +129,7 @@ jobs: # .NET Coverage Upload Results from Testing - name: .NET Coverage Upload if: inputs.test - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage path: |