Skip to content

Commit 2979fb6

Browse files
chore(deps): update all dependencies
1 parent e0f4ffd commit 2979fb6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout source code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Set up python
2121
id: setup-python
2222
uses: actions/setup-python@v6
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout source code
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
- name: Set up Docker Buildx
4646
uses: docker/setup-buildx-action@v3
4747
- name: Build docker image

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

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

2727
- name: Initialize CodeQL
2828
uses: github/codeql-action/init@v4

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout source code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Set up python
2121
id: setup-python
2222
uses: actions/setup-python@v6
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout source code
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
- name: Set up Docker Buildx
4646
uses: docker/setup-buildx-action@v3
4747
- name: Build docker image

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616

1717
# ruff - linting + formatting
1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: v0.14.4
19+
rev: v0.14.8
2020
hooks:
2121
- id: ruff
2222
name: ruff
@@ -25,14 +25,14 @@ repos:
2525

2626
# mypy - lint-like type checking
2727
- repo: https://github.com/pre-commit/mirrors-mypy
28-
rev: v1.18.2
28+
rev: v1.19.0
2929
hooks:
3030
- id: mypy
3131
name: mypy
3232

3333
# bandit - find common security issues
3434
- repo: https://github.com/pycqa/bandit
35-
rev: 1.8.6
35+
rev: 1.9.2
3636
hooks:
3737
- id: bandit
3838
name: bandit

.python-version

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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.14.0-slim-trixie AS python-base
1+
FROM python:3.14.1-slim-trixie AS python-base
22

33
ENV PYTHONUNBUFFERED=1 \
44
PYTHONDONTWRITEBYTECODE=1 \
@@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
99

1010
FROM python-base AS builder-base
1111

12-
COPY --from=ghcr.io/astral-sh/uv:0.9.9 /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.15 /uv /uvx /bin/
1313

1414
WORKDIR $WORKDIR_PATH
1515

0 commit comments

Comments
 (0)