From 61c3a69d66c345f2f9e3bb3eba379f13e4f4f7a2 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 27 Feb 2026 00:54:52 +0000 Subject: [PATCH 1/6] Fix deprecated codecov config --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 80323973055..b112d92d6e8 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -264,7 +264,7 @@ jobs: - name: Upload coverage uses: codecov/codecov-action@v5 with: - file: ./coverage.xml + files: ./coverage.xml flags: >- CI-GHA,OS-${{ runner.os From 30eef581fdc31c71ac546659c7add63cce74b447 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 27 Feb 2026 01:04:47 +0000 Subject: [PATCH 2/6] Update .codecov.yml --- .codecov.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.codecov.yml b/.codecov.yml index e21d45ac7b2..115f57702d8 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -9,6 +9,15 @@ coverage: status: project: no +component_management: + individual_components: + - component_id: project + paths: + - aiohttp/** + - component_id: tests + paths: + - tests/** + flags: library: paths: From fa3d43b92c5eeae7cda020fd58bbab7c2c2d790c Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 27 Feb 2026 01:11:33 +0000 Subject: [PATCH 3/6] Update .codecov.yml --- .codecov.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.codecov.yml b/.codecov.yml index 115f57702d8..294e62a02c1 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -3,6 +3,10 @@ codecov: notify: after_n_builds: 13 +comment: + require_head: false + require_base: false + coverage: range: "95..100" From eee6b1c03fceb48b3c4d1115e617c232523ba6ae Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 27 Feb 2026 01:18:15 +0000 Subject: [PATCH 4/6] Update .codecov.yml --- .codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codecov.yml b/.codecov.yml index 294e62a02c1..e3e81ac574d 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,7 +1,7 @@ codecov: branch: master notify: - after_n_builds: 13 + manual_trigger: true comment: require_head: false From 373d9939f03834924f93d61acc962dd9e469d175 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 27 Feb 2026 01:20:57 +0000 Subject: [PATCH 5/6] Update ci-cd.yml --- .github/workflows/ci-cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b112d92d6e8..ab67bb1926d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -334,6 +334,10 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install codecov-cli + run: pip install codecov-cli + - name: Trigger codecov notification + run: codecov-cli send-notifications - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1 with: From 17aa8a110a21423b2b986d161a432ac4acc1e831 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Fri, 27 Feb 2026 01:53:48 +0000 Subject: [PATCH 6/6] Update ci-cd.yml --- .github/workflows/ci-cd.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index ab67bb1926d..a3c3a872fe3 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -334,10 +334,12 @@ jobs: runs-on: ubuntu-latest steps: - - name: Install codecov-cli - run: pip install codecov-cli - name: Trigger codecov notification - run: codecov-cli send-notifications + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true + run_command: send-notifications - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1 with: