Skip to content

Commit 283af26

Browse files
authored
Merge branch 'master' into compatibility-update-in-dart
2 parents f4ed880 + 3849065 commit 283af26

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,13 @@ jobs:
6767
dart pub global activate coverage
6868
dart pub global run coverage:format_coverage -i coverage/test -o coverage/lcov.info --lcov --packages=.dart_tool/package_config.json --report-on=lib
6969
- name: Upload code coverage
70-
uses: codecov/codecov-action@v2
70+
uses: codecov/codecov-action@v4
7171
# Needs to be adapted to collect the coverage at all platforms if platform specific code is added.
7272
if: ${{ always() && matrix.os == 'ubuntu-latest' }}
7373
with:
7474
files: packages/dart/coverage/lcov.info
7575
fail_ci_if_error: true
76+
token: ${{ secrets.CODECOV_TOKEN }}
7677
check-flutter:
7778
runs-on: ${{ matrix.os }}
7879
strategy:
@@ -138,12 +139,13 @@ jobs:
138139
escapedPath="$(echo `pwd` | sed 's/\//\\\//g')"
139140
sed "s/^SF:lib/SF:$escapedPath\/lib/g" coverage/lcov.info > coverage/lcov-full.info
140141
- name: Upload code coverage
141-
uses: codecov/codecov-action@v2
142+
uses: codecov/codecov-action@v4
142143
# Needs to be adapted to collect the coverage at all platforms if platform specific code is added.
143144
if: ${{ always() && matrix.os == 'ubuntu-latest' }}
144145
with:
145146
files: packages/flutter/coverage/lcov-full.info
146147
fail_ci_if_error: true
148+
token: ${{ secrets.CODECOV_TOKEN }}
147149
concurrency:
148150
group: ${{ github.workflow }}-${{ github.ref }}
149151
cancel-in-progress: true

0 commit comments

Comments
 (0)