Skip to content

Commit bb3d597

Browse files
committed
Merge branch 'develop'
2 parents b15f2aa + 95ecc44 commit bb3d597

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
env:
12-
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
1311
steps:
1412
# Without this, there are no files in the directory.
15-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@4
1614
# using flutter
1715
- uses: subosito/[email protected]
1816
with:
@@ -22,6 +20,7 @@ jobs:
2220
- run: flutter pub get
2321
- run: flutter test --coverage
2422
# codecov.io
25-
- uses: codecov/codecov-action@v3
23+
- uses: codecov/codecov-action@v5
2624
with:
27-
file: ./coverage/lcov.info
25+
files: ./coverage/lcov.info
26+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)