From fdaeb0dadbf6d6e7e854bce7cb20955fe2f833a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 03:02:21 +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.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b060ce79c..1f0e31332 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,13 +26,13 @@ jobs: - name: Test run: dotnet test ./Typewriter.sln --no-build --verbosity normal - name: Upload languages test output on failure - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ failure() }} with: name: languages-test-output path: 'test/Typewriter.Test/bin/Debug/net8.0/OutputDirectory*/**' - name: Upload unit test output on failure - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: ${{ failure() }} with: name: unit-test-output