File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 build :
11- name : Continuous Integration
1211 runs-on : ubuntu-latest
1312 steps :
1413 # Check out the code
1514 - uses : actions/checkout@v4
1615
1716 # Setup deno
18- - uses : denoland/setup-deno@v1
17+ - uses : denoland/setup-deno@v2
1918
2019 # Run testsm collect code coverage and generate report from the collected coverage
2120 - run : deno test --allow-all --coverage=cov/
2221 - run : deno coverage --lcov cov/ > cov.lcov
2322
2423 # Upload to Codecov (see https://github.com/marketplace/actions/codecov)
25- - uses : codecov/codecov-action@v4
24+ - uses : codecov/codecov-action@v5
2625 with :
2726 token : ${{ secrets.CODECOV_TOKEN }}
28- file : cov.lcov
27+ files : cov.lcov
2928 fail_ci_if_error : true
3029
3130 # Check that code is correctly formatted
You can’t perform that action at this time.
0 commit comments