diff --git a/.github/workflows/on-main.yml b/.github/workflows/on-main.yml index cd1b743..c0a5186 100644 --- a/.github/workflows/on-main.yml +++ b/.github/workflows/on-main.yml @@ -24,6 +24,10 @@ jobs: with: token: ${{ secrets.PAT }} - uses: subosito/flutter-action@v2 + with: + cache: true + channel: stable + flutter-version: 3.24.x # TODO UX-1347 - name: Setup flutter run: flutter pub get - name: Lint and format diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index 0d150cf..e0be7e9 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -17,6 +17,8 @@ jobs: uses: subosito/flutter-action@v2 with: cache: true + channel: stable + flutter-version: 3.24.x # TODO UX-1347 - name: Install dependencies run: flutter pub get - name: Format code @@ -35,6 +37,8 @@ jobs: - uses: subosito/flutter-action@v2 with: cache: true + channel: stable + flutter-version: 3.24.x # TODO UX-1347 - name: Setup flutter run: flutter pub get - name: Build example app diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5468542..b79231a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -19,6 +19,8 @@ jobs: - uses: subosito/flutter-action@v2 with: cache: true + channel: stable + flutter-version: 3.24.x # TODO UX-1347 - uses: ZebraDevs/flutter-code-quality@main with: token: ${{secrets.GITHUB_TOKEN}} @@ -50,6 +52,8 @@ jobs: - uses: subosito/flutter-action@v2 with: cache: true + channel: stable + flutter-version: 3.24.x # TODO UX-1347 - name: Setup flutter run: flutter pub get - name: Build example app