Upgrade codecov-action to v3 in GitHub workflow

The codecov-action version used in the GitHub workflow file has been upgraded from v2 to v3. This enhances the reliability and performance by leveraging the new features and improvements available in version 3. This commit doesn't affect the functionality of the project but is more of a dependency update.
This commit is contained in:
Winni Neessen 2024-01-25 14:03:19 +01:00
parent 161381d880
commit 1c39dc8cf8
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D

View file

@ -50,6 +50,6 @@ jobs:
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
- name: Upload coverage to Codecov
if: success() && matrix.go == '1.21' && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos