From 252b9476e19d0102253a1f25595683493cfc178c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 14:38:30 +0000 Subject: [PATCH] Chore(deps): Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...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/coverage.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index d973c583..404c9d1f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -1,4 +1,4 @@ -name: Code Coverage +name: Code Coverage # This job runs unit tests and generates a code coverage report. # The report is stored as artifact, and uploaded to Codecov. @@ -47,7 +47,7 @@ jobs: run: dotnet test --no-build --configuration Release --verbosity normal /p:AltCover=true /p:AltCoverXmlReport="coverage.xml" /p:AltCoverStrongNameKey="../IcalNetStrongnameKey.snk" /p:AltCoverAssemblyExcludeFilter="Ical.Net.Tests|NUnit3.TestAdapter|AltCover" /p:AltCoverAttributeFilter="ExcludeFromCodeCoverage" /p:AltCoverLineCover="false" - name: Store coverage report as artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: coverage-report path: ./Ical.Net.Tests/coverage.*.xml # store all coverage reports diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c07bc040..23b266f0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Publish Nuget Package +name: Publish Nuget Package # This job builds and publishes the package to NuGet. # It depends on the included tests job to complete successfully. # This workflow finds the most recent tag that starts with @@ -113,7 +113,7 @@ jobs: --no-build - name: Store artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ICal.Net_pkg_${{env.VERSION}}.${{github.run_number}} path: |