Skip to content

Commit ba9471a

Browse files
chore(deps): update all dependencies
1 parent c4feb1e commit ba9471a

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
- name: Checkout source code
4444
uses: actions/checkout@v6
4545
- name: Set up Docker Buildx
46-
uses: docker/setup-buildx-action@v3
46+
uses: docker/setup-buildx-action@v4
4747
- name: Build docker image
48-
uses: docker/build-push-action@v6
48+
uses: docker/build-push-action@v7
4949
with:
5050
context: .
5151
push: false

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
- name: Checkout source code
4444
uses: actions/checkout@v6
4545
- name: Set up Docker Buildx
46-
uses: docker/setup-buildx-action@v3
46+
uses: docker/setup-buildx-action@v4
4747
- name: Build docker image
48-
uses: docker/build-push-action@v6
48+
uses: docker/build-push-action@v7
4949
with:
5050
context: .
5151
push: false

.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.15.1
19+
rev: v0.15.9
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.19.1
28+
rev: v1.20.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.9.3
35+
rev: 1.9.4
3636
hooks:
3737
- id: bandit
3838
name: bandit

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.10.3 /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.11.3 /uv /uvx /bin/
1313

1414
WORKDIR $WORKDIR_PATH
1515

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ homepage = "https://github.com/smarlhens/python-boilerplate#readme"
1414
repository = "https://github.com/smarlhens/python-boilerplate"
1515

1616
[build-system]
17-
requires = ["uv_build>=0.9.30,<0.11.0"]
17+
requires = ["uv_build>=0.11.3,<0.12.0"]
1818
build-backend = "uv_build"
1919

2020
[dependency-groups]

0 commit comments

Comments
 (0)