From 1f9221fc0d1017e43c957086ea1472b543d14ad0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 00:03:32 +0000 Subject: [PATCH] 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/push-nuget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-nuget.yml b/.github/workflows/push-nuget.yml index 5725535..4040378 100644 --- a/.github/workflows/push-nuget.yml +++ b/.github/workflows/push-nuget.yml @@ -51,7 +51,7 @@ jobs: run: dotnet build --configuration ${{ env.build_configuration }} /p:Version=${{ env.VERSION }} - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: library path: ${{ github.workspace }}/SteamStorefrontAPI/bin/${{ env.configuration }} @@ -72,7 +72,7 @@ jobs: dotnet pack SteamStorefrontAPI --configuration ${{ env.build_configuration }} --no-build --output "${{ github.workspace }}/publish" /p:PackageVersion=${{ env.VERSION }} - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nuget path: ${{ github.workspace }}/publish