diff --git a/.github/workflows/core-pipeline.yml b/.github/workflows/core-pipeline.yml index 19a4de22..a22326dc 100644 --- a/.github/workflows/core-pipeline.yml +++ b/.github/workflows/core-pipeline.yml @@ -101,13 +101,13 @@ jobs: run: ls -R - name: Upload TRX - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-trx path: ${{ env.COVERLET_DIR }}/unit.trx - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-results path: ${{ env.COVERLET_DIR }}/${{env.UNIT_COVERAGE_FILENAME}} @@ -142,7 +142,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.XUNIT_INTEGRATION_COVERAGE_FILENAME}} @@ -177,7 +177,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.NUNIT_INTEGRATION_COVERAGE_FILENAME}} @@ -212,7 +212,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.NUNIT_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -247,7 +247,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.XUNIT_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -282,7 +282,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: tunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.TUNIT_INTEGRATION_COVERAGE_FILENAME}} @@ -314,7 +314,7 @@ jobs: --log-level Debug - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: tunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.TUNIT_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -343,7 +343,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit3-integration-test-results path: ${{ env.XUNIT3_INT_TEST_RESULTS_DIR }}/${{env.XUNIT3_INTEGRATION_COVERAGE_FILENAME}} @@ -372,7 +372,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit3-real-integration-test-results path: ${{ env.XUNIT3_RD_INT_TEST_RESULTS_DIR }}/${{env.XUNIT3_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -554,7 +554,7 @@ jobs: reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary - name: Upload coverage report artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: CoverageReport # Artifact name path: coveragereport # Directory containing files to upload diff --git a/.github/workflows/nunit-pipeline.yml b/.github/workflows/nunit-pipeline.yml index 0f0f1396..4e46d564 100644 --- a/.github/workflows/nunit-pipeline.yml +++ b/.github/workflows/nunit-pipeline.yml @@ -217,13 +217,13 @@ jobs: run: ls -R - name: Upload TRX - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-trx path: ${{ env.COVERLET_DIR }}/unit.trx - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-results path: ${{ env.COVERLET_DIR }}/${{ env.UNIT_COVERAGE_FILENAME }} @@ -256,7 +256,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{ env.NUNIT_INTEGRATION_COVERAGE_FILENAME }} @@ -288,7 +288,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{ env.NUNIT_RD_INTEGRATION_COVERAGE_FILENAME }} @@ -427,7 +427,7 @@ jobs: reporttypes: HtmlInline;Cobertura - name: Upload coverage report artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: CoverageReport path: coveragereport diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 1a5b52e3..63200e7c 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -96,13 +96,13 @@ jobs: run: ls -R - name: Upload TRX - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-trx path: ${{ env.COVERLET_DIR }}/unit.trx - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-results path: ${{ env.COVERLET_DIR }}/${{env.UNIT_COVERAGE_FILENAME}} @@ -137,7 +137,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.XUNIT_INTEGRATION_COVERAGE_FILENAME}} @@ -172,7 +172,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.NUNIT_INTEGRATION_COVERAGE_FILENAME}} @@ -207,7 +207,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: nunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.NUNIT_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -242,7 +242,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.XUNIT_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -361,7 +361,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: tunit-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.TUNIT_INTEGRATION_COVERAGE_FILENAME}} @@ -397,7 +397,7 @@ jobs: --log-level Debug - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: tunit-real-integration-test-results path: ${{ env.COVERLET_DIR }}/${{env.TUNIT_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -466,7 +466,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit3-integration-test-results path: ${{ env.XUNIT3_INT_TEST_RESULTS_DIR }}/${{env.XUNIT3_INTEGRATION_COVERAGE_FILENAME}} @@ -495,7 +495,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: xunit3-real-integration-test-results path: ${{ env.XUNIT3_RD_INT_TEST_RESULTS_DIR }}/${{env.XUNIT3_RD_INTEGRATION_COVERAGE_FILENAME}} @@ -626,7 +626,7 @@ jobs: reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary - name: Upload coverage report artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: CoverageReport # Artifact name path: coveragereport # Directory containing files to upload diff --git a/.github/workflows/tunit-pipeline-diagnostic.yml b/.github/workflows/tunit-pipeline-diagnostic.yml index 8d4e9a64..b531788c 100644 --- a/.github/workflows/tunit-pipeline-diagnostic.yml +++ b/.github/workflows/tunit-pipeline-diagnostic.yml @@ -40,7 +40,7 @@ jobs: run: ls -R - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: tunit-integration-log-diag path: ${{ env.COVERLET_DIR }}/**/*.diag @@ -64,7 +64,7 @@ jobs: run: dotnet run -c ${{ env.CONFIG }} --project ${{ env.M_RD_TUNIT_PROJECT }} -- --results-directory "TestResults" --log-level Debug --diagnostic - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: tunit-real-integration-log-diag path: ${{ env.COVERLET_DIR }}/**/*.diag diff --git a/.github/workflows/unit-test-only.yml b/.github/workflows/unit-test-only.yml index abf7725c..a6cd77c6 100644 --- a/.github/workflows/unit-test-only.yml +++ b/.github/workflows/unit-test-only.yml @@ -48,13 +48,13 @@ jobs: run: dotnet test -c ${{ env.CONFIG }} ${{ env.TT_PROJECT }} - name: Upload TRX - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-trx path: ${{ env.COVERLET_DIR }}/unit.trx - name: Publish Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: unit-test-results path: ${{ env.COVERLET_DIR }}/${{ env.UNIT_COVERAGE_FILENAME }} @@ -86,7 +86,7 @@ jobs: reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary - name: Upload coverage report artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: CoverageReport # Artifact name path: coveragereport # Directory containing files to upload