Skip to content

Commit 43b9a17

Browse files
committed
Updating actions
1 parent 6b6a4ca commit 43b9a17

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,23 @@ env:
88

99
jobs:
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

0 commit comments

Comments
 (0)