Skip to content

Commit fcd0cdc

Browse files
committed
chore: update versions in github actions
1 parent c44f29b commit fcd0cdc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/push.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
- uses: actions/setup-java@v4
1010
with:
1111
distribution: 'zulu'
12-
java-version: '21'
12+
java-version: '24'
1313
- uses: subosito/flutter-action@v2
1414
with:
15-
flutter-version: '3.32.2'
15+
flutter-version: '3.32.6'
1616
channel: 'stable'
1717
- name: Download dependencies
1818
run: flutter pub get
@@ -24,9 +24,9 @@ jobs:
2424
run: flutter test --coverage --reporter expanded
2525
- name: Print coverage information
2626
run: dart run test_cov_console --file=coverage/lcov.info
27-
- name: Ensure test coverage is at least 70%
27+
- name: Ensure test coverage is at least 75%
2828
run: |
29-
result=$(dart run test_cov_console --file=coverage/lcov.info --pass=70)
29+
result=$(dart run test_cov_console --file=coverage/lcov.info --pass=75)
3030
echo $result
3131
if [ "$result" = "PASSED" ]; then
3232
exit 0

0 commit comments

Comments
 (0)