diff --git a/.github/constants.env b/.github/constants.env index 36299dee3..00d598f6b 100644 --- a/.github/constants.env +++ b/.github/constants.env @@ -1,3 +1,5 @@ DOTNET_VERSION_CURRENT_STABLE: '9.0.x' DOTNET_8_VERSION_STABLE: '8.0.x' +DOTNET_7_VERSION_STABLE: '7.0.x' +DOTNET_6_VERSION_STABLE: '6.0.x' DOTNET_VERSION_PREVIEW: '' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 237acfa2b..df73e4592 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,6 +77,8 @@ jobs: dotnet-version: | ${{ env.DOTNET_VERSION_CURRENT_STABLE }} ${{ env.DOTNET_8_VERSION_STABLE }} + ${{ env.DOTNET_7_VERSION_STABLE }} + ${{ env.DOTNET_6_VERSION_STABLE }} - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 51d1585d9..7ab2ddcec 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -45,6 +45,8 @@ jobs: dotnet-version: | ${{ env.DOTNET_VERSION_CURRENT_STABLE }} ${{ env.DOTNET_8_VERSION_STABLE }} + ${{ env.DOTNET_7_VERSION_STABLE }} + ${{ env.DOTNET_6_VERSION_STABLE }} - name: Setup DocFX run: dotnet tool update -g docfx diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index fa71fe599..03e522c63 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -35,6 +35,8 @@ jobs: dotnet-version: | ${{ env.DOTNET_VERSION_CURRENT_STABLE }} ${{ env.DOTNET_8_VERSION_STABLE }} + ${{ env.DOTNET_7_VERSION_STABLE }} + ${{ env.DOTNET_6_VERSION_STABLE }} - name: Install SonarCloud scanner if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'