diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8fdfca855..bde71eba6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -221,7 +221,7 @@ jobs: name: Code coverage (Windows) path: Coverage/Windows - name: Generate coverage report - uses: danielpalme/ReportGenerator-GitHub-Action@5.2.2 + uses: danielpalme/ReportGenerator-GitHub-Action@5.2.3 with: reports: "Coverage/**/coverage.cobertura.xml" targetdir: "coverage-report" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c382dadc3..2a7fc1537 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -116,6 +116,13 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: fetch-depth: 0 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 6.0.x + 7.0.x + 8.0.x - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - name: Setup VSTest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0715ea74..648cca4f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -164,6 +164,13 @@ jobs: run: | version="${GITHUB_REF#refs/heads/release/}" git tag "${version}" + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 6.0.x + 7.0.x + 8.0.x - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - name: Setup VSTest diff --git a/Testably.Abstractions.sln b/Testably.Abstractions.sln index 485545b0c..92245a249 100644 --- a/Testably.Abstractions.sln +++ b/Testably.Abstractions.sln @@ -13,6 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_", "_", "{94F99274-3518-45 Directory.Build.props = Directory.Build.props Directory.Packages.props = Directory.Packages.props Feature.Flags.props = Feature.Flags.props + global.json = global.json LICENSE = LICENSE nuget.config = nuget.config README.md = README.md diff --git a/global.json b/global.json new file mode 100644 index 000000000..108d42a31 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "8.0.203", + "rollForward": "latestMinor" + } +} diff --git a/renovate.json b/renovate.json index 3fe8c69d6..251944485 100644 --- a/renovate.json +++ b/renovate.json @@ -9,5 +9,6 @@ "groupName": [ "Testably.Abstractions packages" ] } ], - "ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ] + "ignoreDeps": [ "actions/download-artifact", "actions/upload-artifact" ], + "schedule": ["before 4am on monday"] }