From 131ff5a42df23870bd4ea0d80eb323b8ee616104 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Sat, 7 Dec 2024 08:17:08 +0400 Subject: [PATCH 1/2] Update codecov.yml use idc --- .github/workflows/codecov.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index b5065c2..ab6c212 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -31,7 +31,8 @@ jobs: pip install pytest pytest-cov pytest --cov=./ --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v5 with: + use_oidc: true files: ./coverage.xml fail_ci_if_error: true From 718479801fe4e25a18a892867829a64e9f80f143 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Sat, 7 Dec 2024 08:43:43 +0400 Subject: [PATCH 2/2] Update codecov.yml --- .github/workflows/codecov.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index ab6c212..7dc21b5 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -30,9 +30,13 @@ jobs: run: | pip install pytest pytest-cov pytest --cov=./ --cov-report=xml - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 - with: - use_oidc: true - files: ./coverage.xml - fail_ci_if_error: true + + # deactivate upload to codecov for now, needs a token or OIDC + # see README in https://github.com/codecov/codecov-action + + #- name: Upload coverage to Codecov + # uses: codecov/codecov-action@v5 + # with: + # use_oidc: true + # files: ./coverage.xml + # fail_ci_if_error: true