Skip to content

Commit

Permalink
Update version of Coveralls GitHub Action (#13265)
Browse files Browse the repository at this point in the history
We had this set to `master` in an attempt to use the rolling release,
except Coveralls added a _new_ branch called `main` that is now the
primary branch, so we had fallen out of date.  One of these effects is
that the action was still attempting to use the deprecating Node 16
runners.

Since we now also have dependabot updating our Actions for us, this
commit sets a fixed release of the Action for better reproducibility.

(cherry picked from commit 18145f9)
  • Loading branch information
jakelishman authored and mergify[bot] committed Oct 3, 2024
1 parent 2ce1b09 commit f5a7a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
lcov --add-tracefile python.info --add-tracefile rust.info --output-file coveralls.info
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2.3.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coveralls.info

0 comments on commit f5a7a56

Please sign in to comment.