Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ repos:
hooks:
- id: git-check
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.34.0
rev: 0.34.1
hooks:
- id: check-github-actions
- id: check-github-workflows
Expand All @@ -76,7 +76,7 @@ repos:
hooks:
- id: ripsecrets
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.2
rev: v0.14.3
hooks:
- id: ruff-format
args:
Expand All @@ -92,8 +92,8 @@ repos:
additional_dependencies:
- prospector-profile-duplicated==1.10.5 # pypi
- prospector-profile-utils==1.26.5 # pypi
- ruff==0.13.2 # pypi
- pylint[spelling]==3.3.8 # pypi
- ruff==0.14.3 # pypi
- pylint[spelling]==3.3.9 # pypi
exclude: |-
(?x)(
^tests?/?
Expand All @@ -111,7 +111,7 @@ repos:
- --profile=utils:pre-commit
additional_dependencies:
- prospector-profile-utils==1.26.5 # pypi
- ruff==0.13.2 # pypi
- ruff==0.14.3 # pypi
- repo: https://github.com/sbrunner/jsonschema-validator
rev: 1.0.0
hooks:
Expand All @@ -138,7 +138,7 @@ repos:
- .
- tests/expected.yaml
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 41.132.5
rev: 41.168.2
hooks:
- id: renovate-config-validator
- repo: https://github.com/sbrunner/python-versions-hook
Expand Down
4 changes: 2 additions & 2 deletions docker/operator_.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import hashlib
import logging
import os
from typing import Any, Optional, cast
from typing import Any, cast

import kopf
import requests
Expand Down Expand Up @@ -136,7 +136,7 @@ async def update(
status: kopf.Status,
logger: kopf.Logger,
**_: Any,
) -> Optional[dict[str, Any]]:
) -> dict[str, Any] | None:
"""Manage the update or resume of the webhook."""
logger.info(
"Update or resume, Name: %s, Namespace: %s",
Expand Down
Loading