From 0c3d7f12c69aa4a2792d10d97ec8151a38cc57ab Mon Sep 17 00:00:00 2001 From: Marcel Vielhaus <37485711+1nf0rmagician@users.noreply.github.com> Date: Mon, 20 Nov 2023 12:25:00 +0100 Subject: [PATCH] Update tools branch used for github workflow --- .github/workflows/build-and-test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index bafd836..2ff5f99 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -14,7 +14,7 @@ on: - future env: - dotnet_sdk_version: '8.0.100-preview.7.23376.3' + dotnet_sdk_version: '8.0.100' REPOSITORY_NAME: ${{ github.event.repository.name }} MORYX_PACKAGE_TARGET_DEV: 'https://www.myget.org/F/moryx/api/v2/package' MORYX_PACKAGE_TARGET_V3_DEV: 'https://www.myget.org/F/moryx/api/v3/index.json' @@ -40,34 +40,34 @@ jobs: Build: needs: [EnvVar] - uses: phoenixcontact/tools/.github/workflows/build-tool.yml@future + uses: phoenixcontact/tools/.github/workflows/build-tool.yml@main with: dotnet_sdk_version: ${{ needs.EnvVar.outputs.dotnet_sdk_version }} REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }} UnitTests: needs: [EnvVar, Build] - uses: phoenixcontact/tools/.github/workflows/unittest-tool.yml@future + uses: phoenixcontact/tools/.github/workflows/unittest-tool.yml@main with: dotnet_sdk_version: ${{ needs.EnvVar.outputs.dotnet_sdk_version }} REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }} IntegrationTests: needs: [EnvVar, Build] - uses: phoenixcontact/tools/.github/workflows/integrationtest-tool.yml@future + uses: phoenixcontact/tools/.github/workflows/integrationtest-tool.yml@main with: dotnet_sdk_version: ${{ needs.EnvVar.outputs.dotnet_sdk_version }} REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }} ReportGenerator: needs: [EnvVar, UnitTests, IntegrationTests] - uses: phoenixcontact/tools/.github/workflows/reportgenerator-tool.yml@future + uses: phoenixcontact/tools/.github/workflows/reportgenerator-tool.yml@main with: REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }} Publish-Test-Coverage: needs: [EnvVar, ReportGenerator] - uses: phoenixcontact/tools/.github/workflows/publish-test-coverage-tool.yml@future + uses: phoenixcontact/tools/.github/workflows/publish-test-coverage-tool.yml@main with: REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }} secrets: @@ -77,13 +77,13 @@ jobs: # currently not working with .Net 8 # Documentation: # needs: [EnvVar, UnitTests] - # uses: phoenixcontact/tools/.github/workflows/documentation-tool.yml@future + # uses: phoenixcontact/tools/.github/workflows/documentation-tool.yml@main # with: # REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }} Publish: needs: [EnvVar, UnitTests] - uses: phoenixcontact/tools/.github/workflows/publish-tool.yml@future + uses: phoenixcontact/tools/.github/workflows/publish-tool.yml@main with: dotnet_sdk_version: ${{ needs.EnvVar.outputs.dotnet_sdk_version }} REPOSITORY_NAME: ${{ needs.EnvVar.outputs.REPOSITORY_NAME }}