diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 676bc98..73ddd6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: with: python-version-file: ".python-version" - name: Set up uv - uses: astral-sh/setup-uv@v8.2.0 + uses: astral-sh/setup-uv@v8.3.2 with: enable-cache: true version-file: "pyproject.toml" @@ -61,7 +61,7 @@ jobs: with: python-version-file: ".python-version" - name: Set up uv - uses: astral-sh/setup-uv@v8.2.0 + uses: astral-sh/setup-uv@v8.3.2 with: enable-cache: true version-file: "pyproject.toml" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3268a03..23ed514 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.20 + rev: v0.15.21 hooks: - id: ruff name: ruff @@ -25,14 +25,14 @@ repos: # mypy - lint-like type checking - repo: https://github.com/pre-commit/mirrors-mypy - rev: v2.1.0 + rev: v2.2.0 hooks: - id: mypy name: mypy # ty - lint-like type checking (Astral, preview) - repo: https://github.com/astral-sh/ty-pre-commit - rev: v0.0.55 + rev: v0.0.58 hooks: - id: ty name: ty @@ -59,7 +59,7 @@ repos: # oxfmt - formatting YAML, JSON, Markdown, ... - repo: https://github.com/oxc-project/mirrors-oxfmt - rev: v0.56.0 + rev: v0.58.0 hooks: - id: oxfmt types_or: [yaml, markdown, json] diff --git a/Dockerfile b/Dockerfile index 9c8c568..ec7dd30 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.11.25 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.28 /uv /uvx /bin/ WORKDIR $WORKDIR_PATH