From 9325abe04b952a7f7fc78196bd24c723fcde264e Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Fri, 14 Nov 2025 17:11:46 +0800 Subject: [PATCH] global.json: relax rollForward policy to fix CI Recent fix [1] for our scheduled CI build didn't last long. Suddenly the "Restore tools" step (`dotnet tool restore`) started failing in Linux because the GithubActions agent's dotnet version was apparently upgraded from 9.0.306 to 9.0.307. Given this, the most sensible approach to fix this is revisit our RollForward policy, which was disabled in a recent PR [2] because of apparent issues when upgrading our docs generation. That issue seems to not be happenning anymore because our CIs are green even when we upgraded to a .NET version newer than 9.0.300 (maybe thanks to our Fornax dependency upgrade?), so it seems safe to restore to a "Minor" setting here. [1] https://github.com/fsprojects/FSharpLint/pull/780 [2] https://github.com/fsprojects/FSharpLint/pull/736 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 5c03259d7..41308e6c5 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { "version": "9.0.306", - "rollForward": "disable" + "rollForward": "minor" } }