diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2a53b3..114b4ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: commitlint: name: Commit lint runs-on: ubuntu-latest - if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' + if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' permissions: contents: read pull-requests: read diff --git a/pyproject.toml b/pyproject.toml index b1c911b..a1be970 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,5 +51,5 @@ dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "ruff>=0.9"] module-name = "dataforge" [build-system] -requires = ["uv_build>=0.10.4,<0.11.0"] +requires = ["uv_build>=0.10.4,<0.12.0"] build-backend = "uv_build"