From 4b20d87f0272bc230b0f1257c401b3ee3257509f Mon Sep 17 00:00:00 2001 From: Adam McKellar Date: Fri, 26 Apr 2024 21:07:19 +0200 Subject: [PATCH 1/3] Removed codecov env from codecov ci and add verbose Codecov action gives error "Error: Codecov token not found. Please provide Codecov token with -t flag." I do not know if said env variable had anything to do with it. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8090aa..62ce782 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,5 +72,4 @@ jobs: files: ./tests/coverage.xml token: ${{ secrets.CODECOV_TOKEN }} slug: instructions-d-installation/installation-instruction - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + verbose: true From 0c52a9deae17ab3d33410b76eabd0fc55e699a48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 21:24:41 +0200 Subject: [PATCH 2/3] Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14 (#1) Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.8.11 to 1.8.14. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.11...v1.8.14) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index dc864dd..5e57e4b 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -22,4 +22,4 @@ jobs: - name: Build SDist run: pipx run build --sdist - - uses: pypa/gh-action-pypi-publish@v1.8.11 + - uses: pypa/gh-action-pypi-publish@v1.8.14 From 4e6dc3cdeae4e426a273f6bc1eeb1af0d4d3df38 Mon Sep 17 00:00:00 2001 From: Adam McKellar Date: Fri, 26 Apr 2024 21:26:08 +0200 Subject: [PATCH 3/3] Codecov upload seems broken. Set fail_ci_if_error to false. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62ce782..0fc466d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: - fail_ci_if_error: true + fail_ci_if_error: false files: ./tests/coverage.xml token: ${{ secrets.CODECOV_TOKEN }} slug: instructions-d-installation/installation-instruction