Skip to content

Commit fb02034

Browse files
Update macos to 15, Xcode to 16.4, flutter to 3.32.8
1 parent 93e29cc commit fb02034

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ on:
1212

1313
jobs:
1414
test-ios:
15-
runs-on: macos-14
15+
runs-on: macos-15
1616
steps:
1717
- uses: actions/checkout@v4
1818
- uses: ruby/setup-ruby@v1
1919
with:
2020
bundler-cache: true
21-
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
21+
- run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
2222
- uses: subosito/flutter-action@v2
2323
with:
2424
# This has to be kept in sync with .tool-versions
25-
flutter-version: '3.27.1'
25+
flutter-version: '3.32.8'
2626
channel: 'stable'
2727
# This action takes 1m30s to finish. Enable cache to make it shorter.
2828
cache: true
@@ -34,7 +34,7 @@ jobs:
3434
- run: make example-build-unsigned-ios-app
3535

3636
test-android:
37-
runs-on: macos-14
37+
runs-on: macos-15
3838
steps:
3939
- uses: actions/checkout@v4
4040
- uses: ruby/setup-ruby@v1
@@ -43,7 +43,7 @@ jobs:
4343
- uses: subosito/flutter-action@v2
4444
with:
4545
# This has to be kept in sync with .tool-versions
46-
flutter-version: '3.27.1'
46+
flutter-version: '3.32.8'
4747
channel: 'stable'
4848
# This action takes 1m30s to finish. Enable cache to make it shorter.
4949
cache: true
@@ -61,7 +61,7 @@ jobs:
6161
- uses: subosito/flutter-action@v2
6262
with:
6363
# This has to be kept in sync with .tool-versions
64-
flutter-version: '3.27.1'
64+
flutter-version: '3.32.8'
6565
channel: 'stable'
6666
# This action takes 1m30s to finish. Enable cache to make it shorter.
6767
cache: true
@@ -81,19 +81,19 @@ jobs:
8181
publish_dir: ./doc/api
8282

8383
deploy-ios:
84-
runs-on: macos-14
84+
runs-on: macos-15
8585
needs: ["test-ios"]
8686
if: ${{ github.repository == 'authgear/authgear-sdk-flutter' }}
8787
steps:
8888
- uses: actions/checkout@v4
8989
- uses: ruby/setup-ruby@v1
9090
with:
9191
bundler-cache: true
92-
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
92+
- run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
9393
- uses: subosito/flutter-action@v2
9494
with:
9595
# This has to be kept in sync with .tool-versions
96-
flutter-version: '3.27.1'
96+
flutter-version: '3.32.8'
9797
channel: 'stable'
9898
# This action takes 1m30s to finish. Enable cache to make it shorter.
9999
cache: true
@@ -122,7 +122,7 @@ jobs:
122122
run: make example-upload-ios-app
123123

124124
deploy-android:
125-
runs-on: macos-14
125+
runs-on: macos-15
126126
needs: ["test-android"]
127127
if: ${{ github.repository == 'authgear/authgear-sdk-flutter' }}
128128
steps:
@@ -133,7 +133,7 @@ jobs:
133133
- uses: subosito/flutter-action@v2
134134
with:
135135
# This has to be kept in sync with .tool-versions
136-
flutter-version: '3.27.1'
136+
flutter-version: '3.32.8'
137137
channel: 'stable'
138138
# This action takes 1m30s to finish. Enable cache to make it shorter.
139139
cache: true

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
flutter 3.27.1-stable
1+
flutter 3.32.8-stable
22
nodejs 20.18.1
33
ruby 3.3.7

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
#
4646
# export PATH="/path/to/your/installation/bin:$PATH"
4747

48-
# 3.27.1
49-
# pkgs.flutter327
48+
# 3.32.8
49+
# pkgs.flutter332
5050
];
5151
# Even we use mkShellNoCC, DEVELOPER_DIR, SDKROOT, MACOSX_DEPLOYMENT_TARGET is still set.
5252
# We undo that.

0 commit comments

Comments
 (0)