From 69111d6274e71c9922597cb05ced235ead5070ad Mon Sep 17 00:00:00 2001 From: stuartmorgan-g Date: Fri, 14 Nov 2025 09:53:31 -0500 Subject: [PATCH 1/2] [ci] Update Flutter version for `release` When updating the repo for the 3.38 release, I missed the step of updating the release script (it's in the documented steps already, I just missed that line this time). This is causing a `release` failure for packages that require 3.38. Uses 3.38.1 rather than 3.38.0 because of the Dart version mistake in 3.38.0. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d79b584d129..835b40c18e3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: # the change if it doesn't. run: | cd $HOME - git clone https://github.com/flutter/flutter.git --depth 1 -b 3.35.0 _flutter + git clone https://github.com/flutter/flutter.git --depth 1 -b 3.38.1 _flutter echo "$HOME/_flutter/bin" >> $GITHUB_PATH cd $GITHUB_WORKSPACE # Checks out a copy of the repo. From 0dad00b82909b5a0e052f307e069da6d1ca172fc Mon Sep 17 00:00:00 2001 From: stuartmorgan-g Date: Sat, 15 Nov 2025 09:23:54 -0500 Subject: [PATCH 2/2] release.yaml doesn't affect tests --- script/tool/lib/src/common/file_filters.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/script/tool/lib/src/common/file_filters.dart b/script/tool/lib/src/common/file_filters.dart index 07f024ece538..da6753191977 100644 --- a/script/tool/lib/src/common/file_filters.dart +++ b/script/tool/lib/src/common/file_filters.dart @@ -22,6 +22,7 @@ bool isRepoLevelNonCodeImpactingFile(String path) { '.github/dependabot.yml', '.github/labeler.yml', '.github/post_merge_labeler.yml', + '.github/workflows/release.yml', '.github/workflows/pull_request_label.yml', ].contains(path) || // This directory only affects automated code reviews, so cannot affect