From 35cd66a2ab70e77dfd86ad5748a99d7a87a92780 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 5 Aug 2021 04:42:45 -0700 Subject: [PATCH] Bump `codecov/codecov-action` workflow dependency to v2 The `codecov/codecov-action` action is used in the unit test runner workflow to upload code coverage data to codecov. The workflow is configured to use the latest release within the specified major version series. It is necessary to manually update the workflow any time a new major version series of an action begins, in which case a review is necessary to determine whether the workflow is affected by the breaking changes that required the major bump. The action is now in its 2.x version series. The cause of the major bump was the removal of some of the action's inputs. I reviewed the changes and found that none of the inputs used in the workflow are affected so it is possible to update without any other changes to the workflow. --- .github/workflows/test-go-task.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-go-task.yml b/.github/workflows/test-go-task.yml index 10b897f31..45fa41071 100644 --- a/.github/workflows/test-go-task.yml +++ b/.github/workflows/test-go-task.yml @@ -53,7 +53,7 @@ jobs: - name: Send unit tests coverage to Codecov if: matrix.operating-system == 'ubuntu-latest' - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v2 with: file: ./coverage_unit.txt flags: unit