diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5df6df57..42740409 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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: |