From 601ffd07992da14585be0aafd91b49868b4f52c8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 22:29:40 +0000 Subject: [PATCH] chore(deps): update all dependencies --- .github/workflows/ci.yml | 4 ++-- .github/workflows/pr.yml | 4 ++-- .pre-commit-config.yaml | 4 ++-- Dockerfile | 2 +- pyproject.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7034c68..f3dc430 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,9 +43,9 @@ jobs: - name: Checkout source code uses: actions/checkout@v6 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Build docker image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . push: false diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c6f939b..c4a0f20 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -43,9 +43,9 @@ jobs: - name: Checkout source code uses: actions/checkout@v6 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Build docker image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . push: false diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1e663d8..5795f8b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: # ruff - linting + formatting - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.1 + rev: v0.15.8 hooks: - id: ruff name: ruff @@ -32,7 +32,7 @@ repos: # bandit - find common security issues - repo: https://github.com/pycqa/bandit - rev: 1.9.3 + rev: 1.9.4 hooks: - id: bandit name: bandit diff --git a/Dockerfile b/Dockerfile index 37e488d..45ec970 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" FROM python-base AS builder-base -COPY --from=ghcr.io/astral-sh/uv:0.10.3 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.2 /uv /uvx /bin/ WORKDIR $WORKDIR_PATH diff --git a/pyproject.toml b/pyproject.toml index 21e08e0..9d45eba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ homepage = "https://github.com/smarlhens/python-boilerplate#readme" repository = "https://github.com/smarlhens/python-boilerplate" [build-system] -requires = ["uv_build>=0.9.30,<0.11.0"] +requires = ["uv_build>=0.11.2,<0.12.0"] build-backend = "uv_build" [dependency-groups]