Skip to content

Commit

Permalink
Update flutter version in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmemarioss committed May 23, 2024
1 parent 480dc61 commit 04d33c2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ jobs:
name: Flutter Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Clone repository
uses: actions/checkout@v4

- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/[email protected]

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '2.2.3'
channel: stable
flutter-version: 3.19.0

# Get flutter dependencies.
- run: flutter pub get
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/internal-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ jobs:
name: Flutter Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Clone repository
uses: actions/checkout@v4

- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/[email protected]

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '2.2.3'
channel: stable
flutter-version: 3.19.0

# Get flutter dependencies.
- run: flutter pub get
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,18 @@ jobs:
name: Flutter Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Clone repository
uses: actions/checkout@v4

- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/[email protected]

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '2.2.3'
channel: stable
flutter-version: 3.19.0

- name: Get version from pubspec.yaml
id: appVersion
Expand Down

0 comments on commit 04d33c2

Please sign in to comment.