Skip to content

Commit 2f3a1ba

Browse files
CI: test Dart 3.9 and Flutter 3.35, Dart 3.7 and Flutter 3.29
1 parent 5f0209d commit 2f3a1ba

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/code-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ permissions:
1515
env:
1616
# Do code analysis with latest SDK.
1717
# Pick a concrete version instead of "latest" to avoid builds breaking due to changes in new SDKs.
18-
FLUTTER_VERSION: 3.29.2 # Available versions: https://docs.flutter.dev/release/archive
19-
DART_VERSION: 3.7.2 # Available versions: https://dart.dev/get-dart/archive
18+
FLUTTER_VERSION: 3.35.2 # Available versions: https://docs.flutter.dev/release/archive
19+
DART_VERSION: 3.9.2 # Available versions: https://dart.dev/get-dart/archive
2020

2121
jobs:
2222
format-and-analyze:

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ env:
2020
# Run generator integration tests and init script with latest SDK.
2121
# Pick a concrete version instead of "latest" to avoid builds breaking due to changes in new SDKs.
2222
# NOTE: also update matrix configurations below!
23-
FLUTTER_VERSION: 3.29.2 # Available versions: https://docs.flutter.dev/release/archive
24-
DART_VERSION: 3.7.2 # Available versions: https://dart.dev/get-dart/archive
23+
FLUTTER_VERSION: 3.35.2 # Available versions: https://docs.flutter.dev/release/archive
24+
DART_VERSION: 3.9.2 # Available versions: https://dart.dev/get-dart/archive
2525

2626
jobs:
2727

@@ -67,8 +67,8 @@ jobs:
6767
# Pick a concrete version instead of "latest" to avoid builds breaking due to changes in new SDKs.
6868
# Can not use env variables here, only within 'steps'.
6969
# For available versions see https://dart.dev/get-dart/archive
70-
- 3.7.2
71-
- 3.5.4 # Use latest bugfix release to get tooling fixes
70+
- 3.9.2
71+
- 3.7.2 # Use latest bugfix release to get tooling fixes
7272
runs-on: ${{ matrix.os }}
7373
steps:
7474
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c # v1.7.1
@@ -111,17 +111,17 @@ jobs:
111111
# Can not use env variables here, only within 'steps'.
112112
# For available versions see https://docs.flutter.dev/release/archive
113113
# NOTE Also update versions for Ubuntu below!
114-
- 3.29.2
115-
- 3.24.5 # Use latest bugfix release to get tooling fixes
114+
- 3.35.2
115+
- 3.29.3 # Use latest bugfix release to get tooling fixes
116116
include:
117117
# Test building for Android with highest supported JDK on latest Flutter SDK,
118118
# lowest supported JDK on lowest supported Flutter SDK. (Android is only built if a Linux
119119
# OS is detected, see integration-test.sh)
120120
- os: ubuntu-24.04
121-
flutter-version: 3.29.2
121+
flutter-version: 3.35.2
122122
jdk: 21
123123
- os: ubuntu-24.04
124-
flutter-version: 3.24.5 # Use latest bugfix release to get tooling fixes
124+
flutter-version: 3.29.3 # Use latest bugfix release to get tooling fixes
125125
jdk: 17
126126
runs-on: ${{ matrix.os }}
127127
steps:

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ variables:
88
# # Pick a concrete version instead of "latest" to avoid builds breaking due to changes in new
99
# SDKs.
1010
# For available versions see https://hub.docker.com/_/dart/tags and https://dart.dev/get-dart/archive
11-
DART_VERSION_LATEST: '3.7.2'
12-
DART_VERSION_LOWEST: '3.5.4' # Use latest bugfix release to get tooling fixes
11+
DART_VERSION_LATEST: '3.9.2'
12+
DART_VERSION_LOWEST: '3.7.2' # Use latest bugfix release to get tooling fixes
1313
DART_VERSION: $DART_VERSION_LATEST # Also used for caching, see .cache template
1414

1515
.common:

0 commit comments

Comments
 (0)