From 567633ff9e1418c9c3d062ee233bf38251053f4b Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Sun, 23 Feb 2025 20:18:34 +0100 Subject: [PATCH] Upgrade codcov --- .github/workflows/test-and-lint.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-lint.yaml b/.github/workflows/test-and-lint.yaml index 7ca53c0..4cadda1 100644 --- a/.github/workflows/test-and-lint.yaml +++ b/.github/workflows/test-and-lint.yaml @@ -17,14 +17,16 @@ jobs: - name: Test run: go test -v ./... -coverprofile="coverage.out" - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v5 with: + token: ${{ secrets.CODECOV_TOKEN }} files: coverage.out flags: unittests # optional name: go-cache fail_ci_if_error: true # optional (default = false) verbose: false # optional (default = false) + lint: name: lint runs-on: ubuntu-latest