Skip to content

Commit dc569f3

Browse files
Update all dependencies
1 parent acd9f3c commit dc569f3

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.docker/python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.5
1+
FROM python:3.14.0
22
ARG PACKAGE="core"
33

44
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv

.github/workflows/code-quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Initialize CodeQL
28-
uses: github/codeql-action/init@v3
28+
uses: github/codeql-action/init@v4
2929
with:
3030
languages: ${{ matrix.language }}
3131
queries: +security-and-quality
3232

3333
- name: Autobuild
34-
uses: github/codeql-action/autobuild@v3
34+
uses: github/codeql-action/autobuild@v4
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@v3
37+
uses: github/codeql-action/analyze@v4
3838
with:
3939
category: "/language:${{ matrix.language }}"

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Checkout source code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Set up python
2525
id: setup-python
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version-file: ".python-version"
2929

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default_language_version:
77
repos:
88
# general checks (see here: https://pre-commit.com/hooks.html)
99
- repo: https://github.com/pre-commit/pre-commit-hooks
10-
rev: v5.0.0
10+
rev: v6.0.0
1111
hooks:
1212
- id: check-yaml
1313
args: [--allow-multiple-documents]
@@ -17,7 +17,7 @@ repos:
1717

1818
# ruff - linting + formatting
1919
- repo: https://github.com/astral-sh/ruff-pre-commit
20-
rev: "v0.12.1"
20+
rev: "v0.14.4"
2121
hooks:
2222
- id: ruff
2323
name: ruff
@@ -26,7 +26,7 @@ repos:
2626

2727
# mypy - lint-like type checking
2828
- repo: https://github.com/pre-commit/mirrors-mypy
29-
rev: v1.16.1
29+
rev: v1.18.2
3030
hooks:
3131
- id: mypy
3232
name: mypy
@@ -61,7 +61,7 @@ repos:
6161

6262
# bandit - find common security issues
6363
- repo: https://github.com/pycqa/bandit
64-
rev: 1.8.5
64+
rev: 1.8.6
6565
hooks:
6666
- id: bandit
6767
name: bandit

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13.5
1+
3.14.0

0 commit comments

Comments
 (0)