Skip to content

chore(ci): bump codecov/codecov-action from 6 to 7 in the actions group#89

Merged
DEENUU1 merged 1 commit into
mainfrom
dependabot/github_actions/actions-484570b1b1
Jun 17, 2026
Merged

chore(ci): bump codecov/codecov-action from 6 to 7 in the actions group#89
DEENUU1 merged 1 commit into
mainfrom
dependabot/github_actions/actions-484570b1b1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 13, 2026

Copy link
Copy Markdown
Contributor

Bumps the actions group with 1 update: codecov/codecov-action.

Updates codecov/codecov-action from 6 to 7

Release notes

Sourced from codecov/codecov-action's releases.

v7.0.0

⚠️ Due to migration issues with keybase, we are unable to update our keys under the codecovsecurity account. We have deleted the account and are using codecovsecops with the original gpg key

What's Changed

Full Changelog: codecov/codecov-action@v6.0.1...v7.0.0

v6.0.2

This is a copy of the v7.0.0 release to make updates easier

What's Changed

Full Changelog: codecov/codecov-action@v6.0.1...v6.0.2

v6.0.1

What's Changed

Full Changelog: codecov/codecov-action@v6.0.0...v6.0.1

Changelog

Sourced from codecov/codecov-action's changelog.

v5.5.2

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2

v5.5.1

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1

v5.5.0

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0

v5.4.3

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3

v5.4.2

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the actions group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action).


Updates `codecov/codecov-action` from 6 to 7
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v6...v7)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 13, 2026
@codecov-commenter

Copy link
Copy Markdown

⚠️ Please install the 'codecov app svg image' to ensure uploads and comments are reliably processed by Codecov.

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@DEENUU1 DEENUU1 merged commit 01cff55 into main Jun 17, 2026
15 checks passed
@DEENUU1 DEENUU1 deleted the dependabot/github_actions/actions-484570b1b1 branch June 17, 2026 00:03
DEENUU1 added a commit that referenced this pull request Jun 17, 2026
… fixes (#102)

* chore(release): 0.2.12 — Deep Research mode + Docker/Makefile/install fixes

Deep Research mode (#90) plus a batch of generated-project infra fixes:
make install pre-commit spawn (#95), Makefile Compose v2 (#96), frontend
Docker build (#97), pydantic_deep Responses API routing (#93), Taskiq
container health (#94), codecov-action bump (#89).

* fix(ci): install generated projects with `uv sync --dev` (#95 follow-up)

The dev tools moved to a PEP 735 [dependency-groups] table, so the template
jobs that install a *generated* project must use `uv sync --dev`, not
`uv sync --extra dev` (which now errors "Extra `dev` is not defined in the
project's optional-dependencies table"). The four generator-repo jobs keep
`--extra dev` — the generator's own pyproject still uses optional-dependencies.

* fix(backend): clear ty diagnostics in generated projects

The minimal SQLite project reported 31 ty diagnostics; the only build-blocking
ones were `unused-awaitable` — the SQLite admin/user routes were sync `def`s
that never awaited the always-async UserService, returning un-awaited
coroutines (a real bug). Fixes:

- Make the SQLite admin_users/users routes `async` + `await` (matches MongoDB).
- Type service id params per database via a `UserId` alias (UUID for Postgres,
  str for SQLite/MongoDB); resolve reset/magic-link tokens to the same type.
- Type the agent capability list `list[Any]`; `AdminService.__init__` db as
  `Any` so one impl serves async (PG) and sync (SQLite).
- Feature-gate the admin-stats best-effort model imports (session/credit/
  subscription) instead of importing absent modules.
- Build the args validator dict without the dict() overload ty can't match.
- Convert mypy `# type: ignore` to `# ty: ignore` where ty still flags the line.
- Set `unresolved-import` and `unused-ignore-comment` ty rules to ignore: the
  former covers genuinely-optional deps (pymupdf/docx) and feature-gated models,
  the latter tolerates an ignore that's needed in one config but unused in
  another generated from the same template.

Minimal SQLite now type-checks clean (0); all configs `ty check` exit 0.

* fix(tests): mock UserService with AsyncMock for SQLite user routes

The SQLite admin/user routes became `async` + `await` (they were sync `def`s
returning un-awaited coroutines), so the SQLite test fixture mocking the
service with a plain MagicMock made `await service.get_by_id(...)` raise
"'MockUser' object can't be awaited". UserService is async for every database
now, so mock it with AsyncMock unconditionally.

* fix(backend): clear ty diagnostics in teams/billing and all AI frameworks

Extends the ty cleanup to the heavier configs so every generatable project
type-checks clean (0 diagnostics, ty exit 0):

- Real bug: InvitationRead was missing `organization_id` and `token` fields, so
  the invite/list endpoints silently dropped them (pydantic ignores extra
  kwargs). Added the fields.
- stripe_client: annotate `_handle_error` as NoReturn (it always raises) so the
  Stripe wrappers no longer "implicitly return None"; targeted ty:ignore on the
  two Stripe-stub kwarg mismatches.
- Targeted ty:ignore for the remaining Stripe-SDK / ORM-list-variance spots
  (billing routes, subscription_events, webhook_handler, facade, projects,
  rowcount in invitation/usage_event/rag_document repos, mongo apaginate).
- Scope a ty override to app/agents/*_assistant.py ignoring the third-party
  stub rule families (LangGraph Pregel ainvoke/astream, create_agent overloads,
  RunnableConfig TypedDicts, Agent[...] generic variance) — the adapters are
  correct at runtime; name-resolution rules stay on so real typos still fail.

Verified clean: SQLite (minimal), PostgreSQL (plain + teams/billing/credits),
MongoDB, LangChain, LangGraph, DeepAgents, PydanticDeep. CrewAI still can't
resolve deps on Python 3.14 (pydantic-core build) — CI already skips its ty.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants