Skip to content

Commit 5cc85c3

Browse files
authored
Fix nodejs16 within coverallsapp/github-action (#2436)
1 parent 3ae7b7a commit 5cc85c3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/edge.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: bundle exec rake spec
3131

3232
- name: Coveralls
33-
uses: coverallsapp/github-action@master
33+
uses: coverallsapp/github-action@v2
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }}
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Coveralls Finished
44-
uses: coverallsapp/github-action@master
44+
uses: coverallsapp/github-action@v2
4545
with:
4646
github-token: ${{ secrets.github_token }}
4747
parallel-finished: true

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: bundle exec rspec ${{ matrix.specs }}
6262

6363
- name: Coveralls
64-
uses: coverallsapp/github-action@master
64+
uses: coverallsapp/github-action@v2
6565
with:
6666
github-token: ${{ secrets.GITHUB_TOKEN }}
6767
flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }}
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Coveralls Finished
75-
uses: coverallsapp/github-action@master
75+
uses: coverallsapp/github-action@v2
7676
with:
7777
github-token: ${{ secrets.github_token }}
7878
parallel-finished: true

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* [#2430](https://github.com/ruby-grape/grape/pull/2430): Isolate extensions within specific gemfile - [@ericproulx](https://github.com/ericproulx).
2727
* [#2431](https://github.com/ruby-grape/grape/pull/2431): Drop appraisals in favor of eval_gemfile - [@ericproulx](https://github.com/ericproulx).
2828
* [#2435](https://github.com/ruby-grape/grape/pull/2435): Use rack constants - [@ericproulx](https://github.com/ericproulx).
29+
* [#2436](https://github.com/ruby-grape/grape/pull/2436): Update coverallsapp github-action - [@ericproulx](https://github.com/ericproulx).
2930
* Your contribution here.
3031

3132
#### Fixes

0 commit comments

Comments
 (0)