Skip to content

Commit 9633e63

Browse files
authored
Change Flutter setup action in workflow
Updated the workflow to use the dart-lang/setup-dart action instead of subosito/flutter-action for setting up Flutter.
1 parent 68c2b95 commit 9633e63

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/flutter-web.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ jobs:
1717
- name: Checkout Repository
1818
uses: actions/checkout@v4
1919

20+
# Note: This workflow uses the latest stable version of the Dart SDK.
21+
# You can specify other versions if desired, see documentation here:
22+
# https://github.com/dart-lang/setup-dart/blob/main/README.md
23+
# - uses: dart-lang/setup-dart@v1
2024
- name: Set up Flutter
21-
uses: subosito/flutter-action@v2
22-
with:
23-
flutter-version: "stable"
25+
uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
2426

2527
- name: Install dependencies
2628
run: flutter pub get

0 commit comments

Comments
 (0)