Skip to content

Commit b41622d

Browse files
authoredMay 14, 2023
fix: Solve warnings from 3.10.0 analyzer (flame-engine#2532)
Just solves the warnings that the new Flutter version complains about (which makes us lose 10 points on pub).
1 parent 7dd2bf7 commit b41622d

File tree

73 files changed

+138
-141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+138
-141
lines changed
 

‎.github/workflows/cicd.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: subosito/flutter-action@v2
1717
with:
18-
flutter-version: '3.7.1'
18+
flutter-version: '3.10.0'
1919
channel: 'stable'
2020
cache: true
2121
- uses: bluefireteam/melos-action@main
22-
with:
23-
melos-version: '3.0.0-dev.0'
2422
- run: melos run format-check
2523

2624
analyze:
@@ -29,11 +27,9 @@ jobs:
2927
- uses: actions/checkout@v3
3028
- uses: subosito/flutter-action@v2
3129
with:
32-
flutter-version: '3.7.1'
30+
flutter-version: '3.10.0'
3331
channel: 'stable'
3432
- uses: bluefireteam/melos-action@v2
35-
with:
36-
melos-version: '3.0.0-dev.0'
3733
- name: "Analyze"
3834
uses: invertase/github-action-dart-analyzer@v1
3935
with:
@@ -58,11 +54,9 @@ jobs:
5854
- uses: actions/checkout@v3
5955
- uses: subosito/flutter-action@v2
6056
with:
61-
flutter-version: '3.7.1'
57+
flutter-version: '3.10.0'
6258
channel: 'stable'
6359
cache: true
6460
- uses: bluefireteam/melos-action@main
65-
with:
66-
melos-version: '3.0.0-dev.0'
6761
- uses: bluefireteam/spec-action@main
6862
# END TESTING STAGE

‎doc/flame/examples/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 1.0.0
44
publish_to: none
55

66
environment:
7-
sdk: ">=2.18.0 <3.0.0"
7+
sdk: ">=2.18.0 <4.0.0"
88
flutter: ">=3.3.0"
99

1010
dependencies:

0 commit comments

Comments
 (0)
Please sign in to comment.