From 83c729934a77d03bc2f9d1a9768a513c34717429 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 19:20:17 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(deps):=20Bump=20actions/upload-art?= =?UTF-8?q?ifact=20from=204=20to=206?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/dotnet-core.yml | 6 +++--- .github/workflows/dotnet.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33e0f3d..3d942a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,14 +152,14 @@ jobs: - name: 📤 Upload coverage report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage-report path: ${{ env.WORKING_DIRECTORY }}/CoverageReport/ - name: 📤 Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: test-results path: ${{ env.WORKING_DIRECTORY }}/TestResults/ diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index b64c06e..18df775 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -53,14 +53,14 @@ jobs: run: dotnet test --configuration ${{ env.CONFIGURATION }} --no-build --verbosity minimal --logger trx --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.ExcludeByFile="**/Program.cs" - name: 📊 Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() with: name: test-results-${{ matrix.os }} path: ${{ env.WORKING_DIRECTORY }}/TestResults/ - name: 📈 Upload coverage reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() && matrix.os == 'ubuntu-latest' with: name: coverage-reports @@ -153,7 +153,7 @@ jobs: run: dotnet pack --configuration ${{ env.CONFIGURATION }} --output ./packages - name: 📤 Upload packages artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: nuget-packages path: ${{ env.WORKING_DIRECTORY }}/packages/*.nupkg \ No newline at end of file diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index bfa0017..bb6ed38 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -59,14 +59,14 @@ jobs: run: dotnet test --configuration ${{ env.CONFIGURATION }} --no-build --verbosity minimal --logger trx --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.ExcludeByFile="**/Program.cs" - name: 📊 Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() with: name: test-results-${{ matrix.os }} path: ${{ env.WORKING_DIRECTORY }}/TestResults/ - name: 📈 Upload coverage reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() && matrix.os == 'ubuntu-latest' with: name: coverage-reports