From f5a7a561903dd280b4113b900c27efbbe9b8dc71 Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Thu, 3 Oct 2024 22:36:07 +0100 Subject: [PATCH] Update version of Coveralls GitHub Action (#13265) 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 18145f9dc696d8e660179058f9307fd5e0f8e7b2) --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 95a0bda5d421..4f63e7d9fe16 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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