From cd818ba77063ca58148e4d23a6b4ad07f4813c70 Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Mon, 31 Oct 2022 08:45:18 -0700 Subject: [PATCH] [ci] Roll repo tooling to 0.12.1 (#2751) Picks up the workaround for https://github.com/dart-lang/pub/issues/3618 --- .ci/scripts/prepare_tool.sh | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/scripts/prepare_tool.sh b/.ci/scripts/prepare_tool.sh index ddd2092532..a4a364d385 100755 --- a/.ci/scripts/prepare_tool.sh +++ b/.ci/scripts/prepare_tool.sh @@ -8,4 +8,4 @@ git fetch origin main # Pinned version of the plugin tools, to avoid breakage in this repository # when pushing updates from flutter/plugins. -dart pub global activate flutter_plugin_tools 0.12.0 +dart pub global activate flutter_plugin_tools 0.12.1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfc2dcc196..985aa461cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: with: fetch-depth: 0 # Fetch all history so the tool can get all the tags to determine version. - name: Set up tools - run: dart pub global activate flutter_plugin_tools 0.12.0 + run: dart pub global activate flutter_plugin_tools 0.12.1 # # This workflow should be the last to run. So wait for all the other tests to succeed. - name: Wait on all tests