From eed024f9ee72f9a86c67f80e6c5e0f28e8c884ff Mon Sep 17 00:00:00 2001 From: Leo Farias Date: Tue, 12 May 2026 14:39:58 -0400 Subject: [PATCH] fix(ci): pin Flutter version in .fvmrc The kuhnroyal/flutter-fvm-config-action reads .fvmrc and exports an empty FLUTTER_VERSION when only a channel is set. Subosito then installs the latest stable, and Flutter 3.41.9's pub fails to resolve engine_stamp.json with an empty version segment, breaking melos bootstrap for the superdeck Flutter package. Pin to 3.41.9 to restore reproducible CI. --- .fvmrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.fvmrc b/.fvmrc index c300356c..084b2bc5 100644 --- a/.fvmrc +++ b/.fvmrc @@ -1,3 +1,3 @@ { - "flutter": "stable" -} \ No newline at end of file + "flutter": "3.41.9" +}