Skip to content

Commit d484932

Browse files
author
Mikael Wills
committed
Build fixes
1 parent 9117018 commit d484932

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/dart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
java-version: '12.x'
2323
- uses: subosito/flutter-action@v1
2424
with:
25-
channel: 'stable'
25+
flutter-version: '3.27.1'
2626
- name: Install project dependencies
2727
run: flutter pub get
2828
- name: Dart Format Check

.github/workflows/pushMaster.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
- name: Install Flutter
1515
uses: subosito/flutter-action@v2
1616
with:
17-
channel: "stable"
17+
flutter-version: "3.27.1"
1818
- name: Install project dependencies
1919
run: flutter pub get
2020
- name: Dart Format Check
2121
run: dart format lib/ test/ --set-exit-if-changed
2222
- name: Import Sorter Check
23-
run: dart run import_sorter:main
23+
run: dart run import_sorter:main --exit-if-changed
2424
- name: Dart Analyze Check
2525
run: flutter analyze
2626
- name: Dart Test Check

lib/src/ua.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ class UA extends EventManager {
319319
int num_sessions = _sessions.length;
320320

321321
// Run _terminate_ on every Session.
322-
_sessions.keys.toList().forEach((String? key, _) {
322+
_sessions.keys.toList().forEach((String? key) {
323323
if (_sessions.containsKey(key)) {
324324
logger.d('closing session $key');
325325
try {

0 commit comments

Comments
 (0)