Skip to content

Commit b6bf740

Browse files
committed
fix: ci
1 parent cdc9081 commit b6bf740

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Git Checkout Deno Module
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
- uses: denoland/setup-deno@v2
1616
with:
1717
deno-version: vx.x.x
@@ -24,8 +24,10 @@ jobs:
2424
- name: Create coverage report
2525
run: deno coverage ./coverage --lcov > coverage.lcov
2626
- name: Collect coverage
27-
uses: codecov/codecov-action@v1.0.10
27+
uses: codecov/codecov-action@v5
2828
with:
29-
file: ./coverage.lcov
29+
token: ${{ secrets.CODECOV_TOKEN }}
30+
slug: denostack/intlit
31+
files: ./coverage.lcov
3032
- name: Build Module
3133
run: deno task build:npm

0 commit comments

Comments
 (0)