Skip to content

Commit a104e1b

Browse files
author
Alan Christie
committed
build: Python 3.12.9 (and new pre-commit versions)
1 parent a4a1ab0 commit a104e1b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88

99
# Conventional Commit message checker (commitizen)
1010
- repo: https://github.com/commitizen-tools/commitizen
11-
rev: v3.30.1
11+
rev: v3.31.0
1212
hooks:
1313
- id: commitizen
1414
stages:
@@ -32,21 +32,21 @@ repos:
3232
- --markdown-linebreak-ext=md
3333
# Black (uncompromising) Python code formatter
3434
- repo: https://github.com/psf/black
35-
rev: 24.10.0
35+
rev: 25.1.0
3636
hooks:
3737
- id: black
3838
args:
3939
- --target-version
4040
- py312
4141
# MyPy
4242
- repo: https://github.com/pre-commit/mirrors-mypy
43-
rev: v1.13.0
43+
rev: v1.15.0
4444
hooks:
4545
- id: mypy
4646
files: ^operator
4747
# Pylint
4848
- repo: https://github.com/pycqa/pylint
49-
rev: v3.3.1
49+
rev: v3.3.6
5050
hooks:
5151
- id: pylint
5252
files: ^operator
@@ -57,7 +57,7 @@ repos:
5757
# All files that end '.yaml' or '.yaml.j2'
5858
# See https://pre-commit.com/#filtering-files-with-types
5959
- repo: https://github.com/adrienverge/yamllint
60-
rev: v1.35.1
60+
rev: v1.37.0
6161
hooks:
6262
- id: yamllint
6363
types:

operator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.7-slim
1+
FROM python:3.12.9-slim
22

33
# Labels
44
LABEL maintainer='Alan Christie <achristie@informaticsmatters.com>'
@@ -14,4 +14,4 @@ WORKDIR /src
1414
COPY handlers.py /src/
1515
COPY entrypoint.sh /src/
1616

17-
CMD ./entrypoint.sh
17+
CMD ["./entrypoint.sh"]

0 commit comments

Comments
 (0)