From 5cc85c30adcc82ec562947b0c732fb63a92d7f3e Mon Sep 17 00:00:00 2001 From: Eric Proulx Date: Sat, 4 May 2024 21:47:58 +0200 Subject: [PATCH] Fix nodejs16 within coverallsapp/github-action (#2436) --- .github/workflows/edge.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- CHANGELOG.md | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/edge.yml b/.github/workflows/edge.yml index cfa629b0b8..c9d26044dc 100644 --- a/.github/workflows/edge.yml +++ b/.github/workflows/edge.yml @@ -30,7 +30,7 @@ jobs: run: bundle exec rake spec - name: Coveralls - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }} @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Coveralls Finished - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.github_token }} parallel-finished: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 59c57de543..f1684af13a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: run: bundle exec rspec ${{ matrix.specs }} - name: Coveralls - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }} @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Coveralls Finished - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.github_token }} parallel-finished: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 08fb4e266e..7c3c30de01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ * [#2430](https://github.com/ruby-grape/grape/pull/2430): Isolate extensions within specific gemfile - [@ericproulx](https://github.com/ericproulx). * [#2431](https://github.com/ruby-grape/grape/pull/2431): Drop appraisals in favor of eval_gemfile - [@ericproulx](https://github.com/ericproulx). * [#2435](https://github.com/ruby-grape/grape/pull/2435): Use rack constants - [@ericproulx](https://github.com/ericproulx). +* [#2436](https://github.com/ruby-grape/grape/pull/2436): Update coverallsapp github-action - [@ericproulx](https://github.com/ericproulx). * Your contribution here. #### Fixes