From 0ddefad2ffde970ea3c42528391e64e6377b89c6 Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Thu, 18 May 2023 13:40:19 +0200 Subject: [PATCH] ci: pin flutter version at 3.10.x (#344) --- .github/workflows/flutter-ci.yml | 5 +++++ .github/workflows/publish.yml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/flutter-ci.yml b/.github/workflows/flutter-ci.yml index 30cb1346..52eb6b55 100644 --- a/.github/workflows/flutter-ci.yml +++ b/.github/workflows/flutter-ci.yml @@ -17,6 +17,7 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' + flutter-version: '3.10.x' - name: Get dependencies run: flutter pub get @@ -32,6 +33,7 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' + flutter-version: '3.10.x' - name: Get dependencies run: flutter pub get @@ -51,6 +53,7 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' + flutter-version: '3.10.x' - name: Check for any formatting issues run: dart format --set-exit-if-changed . @@ -63,6 +66,7 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' + flutter-version: '3.10.x' - name: Get dependencies run: flutter pub get @@ -78,6 +82,7 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' + flutter-version: '3.10.x' - name: Get dependencies run: flutter pub get diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fb842e3d..df40ad5f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,6 +11,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: subosito/flutter-action@v1 + with: + channel: 'stable' + flutter-version: '3.10.x' - uses: bluefireteam/flutter-gh-pages@v7 with: workingDir: example