diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 59605242..3485cfa5 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -8,9 +8,9 @@ jobs: node-version: [11.4.0] steps: - name: checkout - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: setup ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: test @@ -18,7 +18,7 @@ jobs: npm install npm test - name: report - uses: coverallsapp/github-action@v1.0.1 + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ./coverage/lcov.info + file: ./coverage/lcov.info