Skip to content

Commit 559bd2f

Browse files
authored
Update gh workflow dependencies (#77)
1 parent b65a18d commit 559bd2f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: .github/workflows/nodejs.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,20 @@ jobs:
1616
matrix:
1717
node-version: [18.x]
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- uses: actions/setup-python@v2
2121
with:
2222
python-version: "3.x"
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: npm ci
2828
- run: npm run build --if-present
2929
- run: npm test
3030
- run: npm run coverage
3131
- name: Upload to Codecov
32-
uses: codecov/codecov-action@v1
32+
uses: codecov/codecov-action@v4
33+
with:
34+
token: ${{ secrets.CODECOV_TOKEN }}
35+
fail_ci_if_error: true

0 commit comments

Comments
 (0)