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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: end-of-file-fixer
files: (.*\.(py|md|rst|yaml|yml|json|ts|js|html|svelte|sh))$
Expand All @@ -16,7 +16,7 @@ repos:
exclude: (microservices-connector/config/manifests/.*\.yaml)$

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
rev: v1.5.6
hooks:
- id: insert-license
files: (.*\.(py|yaml|yml|sh))$
Expand Down Expand Up @@ -56,7 +56,7 @@ repos:
name: Unused noqa

- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 8.0.1
hooks:
- id: isort

Expand All @@ -81,30 +81,30 @@ repos:
additional_dependencies:
- prettier@3.2.5

- repo: https://github.com/psf/black.git
rev: 25.1.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
hooks:
- id: black
files: (.*\.py)$

- repo: https://github.com/asottile/blacken-docs
rev: 1.19.1
rev: 1.20.0
hooks:
- id: blacken-docs
args: [--line-length=120, --skip-errors]
additional_dependencies:
- black==24.3.0

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell
args: [-w]
additional_dependencies:
- tomli

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.2
rev: v0.15.9
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --no-cache]
2 changes: 1 addition & 1 deletion kubernetes-addons/istio/istio-gateway-ca-and-cert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: istio-gateway
namespace: istio-ingress # ceritificate must be in the same namespace as istio ingress gw
namespace: istio-ingress # certificate must be in the same namespace as istio ingress gw
spec:
commonName: "Istio ingress for OPEA services"
dnsNames:
Expand Down
Loading