From 4d1b0c7eeab457fe915fc3e1a7728aabb8c05868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cu=CC=9Bo=CC=9Bng=20Nguye=CC=82=CC=83n?= Date: Fri, 23 Aug 2024 22:05:59 +0700 Subject: [PATCH] Fix workflows --- .github/workflows/dart.yml | 2 +- examples/with_provider/pubspec.yaml | 2 +- facebook_auth/pubspec.yaml | 4 ++-- facebook_auth_desktop/example/pubspec.yaml | 2 +- facebook_auth_desktop/pubspec.yaml | 4 ++-- facebook_auth_platform_interface/pubspec.yaml | 2 +- facebook_auth_web/test/mock/mock_interop.dart | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 02bd561f..521ccf36 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v3.1.0 - uses: subosito/flutter-action@v2.7.1 with: - flutter-version: '3.13.6' + flutter-version: '3.19.2' - name: Install facebook_auth dependencies run: cd facebook_auth && flutter pub get diff --git a/examples/with_provider/pubspec.yaml b/examples/with_provider/pubspec.yaml index 20c475bb..b65473ea 100644 --- a/examples/with_provider/pubspec.yaml +++ b/examples/with_provider/pubspec.yaml @@ -18,7 +18,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ">=3.0.0 <4.0.0" + sdk: ">=3.3.0 <4.0.0" # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions diff --git a/facebook_auth/pubspec.yaml b/facebook_auth/pubspec.yaml index 189c88f7..eebf5965 100644 --- a/facebook_auth/pubspec.yaml +++ b/facebook_auth/pubspec.yaml @@ -4,8 +4,8 @@ version: 7.0.1 homepage: https://github.com/darwin-morocho/flutter-facebook-auth environment: - sdk: ">=3.0.0 <4.0.0" - flutter: ">=2.0.0" + sdk: ">=3.3.0 <4.0.0" + flutter: ">=3.19.2" dependencies: flutter: diff --git a/facebook_auth_desktop/example/pubspec.yaml b/facebook_auth_desktop/example/pubspec.yaml index 3f60c8a1..b8546724 100644 --- a/facebook_auth_desktop/example/pubspec.yaml +++ b/facebook_auth_desktop/example/pubspec.yaml @@ -6,7 +6,7 @@ description: Demonstrates how to use the facebook_auth_desktop plugin. publish_to: 'none' # Remove this line if you wish to publish to pub.dev environment: - sdk: ">=3.0.0 <4.0.0" + sdk: ">=3.3.0 <4.0.0" # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions diff --git a/facebook_auth_desktop/pubspec.yaml b/facebook_auth_desktop/pubspec.yaml index 16f0ac3e..58cd680f 100644 --- a/facebook_auth_desktop/pubspec.yaml +++ b/facebook_auth_desktop/pubspec.yaml @@ -4,8 +4,8 @@ version: 2.0.0 homepage: https://github.com/darwin-morocho/flutter-facebook-auth/tree/master/facebook_auth_desktop environment: - sdk: ">=3.0.0 <4.0.0" - flutter: ">=2.0.0" + sdk: ">=3.3.0 <4.0.0" + flutter: ">=3.19.2" dependencies: flutter: diff --git a/facebook_auth_platform_interface/pubspec.yaml b/facebook_auth_platform_interface/pubspec.yaml index b804bea6..591a43cd 100644 --- a/facebook_auth_platform_interface/pubspec.yaml +++ b/facebook_auth_platform_interface/pubspec.yaml @@ -4,7 +4,7 @@ version: 6.0.0 homepage: https://github.com/darwin-morocho/flutter-facebook-auth/tree/master/facebook_auth_platform_interface environment: - sdk: '>=3.0.0 <4.0.0' + sdk: '>=3.3.0 <4.0.0' dependencies: flutter: diff --git a/facebook_auth_web/test/mock/mock_interop.dart b/facebook_auth_web/test/mock/mock_interop.dart index 4ea54a8b..5bebbede 100644 --- a/facebook_auth_web/test/mock/mock_interop.dart +++ b/facebook_auth_web/test/mock/mock_interop.dart @@ -5,7 +5,7 @@ import 'dart:js_interop'; @JS() @anonymous -class FbMock { +extension type FbMock._(JSObject _) implements JSObject { external factory FbMock(); }