diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17b82cc..9f32c08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up python id: setup-python uses: actions/setup-python@v6 @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up python id: setup-python uses: actions/setup-python@v6 @@ -78,7 +78,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 - name: Build docker image diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3849e30..dfc6db0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 55816ef..3268a03 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.16 + rev: v0.15.20 hooks: - id: ruff name: ruff @@ -32,7 +32,7 @@ repos: # ty - lint-like type checking (Astral, preview) - repo: https://github.com/astral-sh/ty-pre-commit - rev: v0.0.47 + rev: v0.0.55 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.54.0 + rev: v0.56.0 hooks: - id: oxfmt types_or: [yaml, markdown, json] diff --git a/.python-version b/.python-version index a6d9ada..3f0a10f 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.14.5 +3.14.6 diff --git a/Dockerfile b/Dockerfile index 48d8561..9c8c568 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.5-slim-trixie AS python-base +FROM python:3.14.6-slim-trixie AS python-base ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ @@ -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.19 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11.25 /uv /uvx /bin/ WORKDIR $WORKDIR_PATH