Skip to content

Commit

Permalink
docs: use v2 action in README
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Apr 19, 2023
1 parent 6674157 commit d2cf009
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Use Node.js 16.x
uses: actions/setup-node@v3
Expand All @@ -64,7 +64,7 @@ jobs:
make test-coverage
- name: Coveralls
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
```

### Complete Parallel Job Example:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Test ${{ matrix.test_number }}
run: make test-coverage-${{ matrix.test_number }}
- name: Coveralls Parallel
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true
Expand All @@ -106,7 +106,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v1
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "run-1,run-2"
Expand Down

0 comments on commit d2cf009

Please sign in to comment.