@@ -20,16 +20,18 @@ jobs:
2020 cmd : ["black", "ruff", "mypy"]
2121 runs-on : ubuntu-latest
2222 steps :
23- - uses : actions/checkout@v5
23+ - uses : actions/checkout@v6
2424 with :
2525 persist-credentials : false
26+ fetch-depth : 0
2627 - id : setup-uv
28+ name : Setup UV
2729 uses : astral-sh/setup-uv@v7
2830 with :
2931 enable-cache : true
30- cache-suffix : 3.11
31- version : " latest "
32- python-version : 3.11
32+ cache-suffix : " 3.11"
33+ github-token : ${{ github.token }}
34+ python-version : " 3.11"
3335 - name : Install deps
3436 run : uv sync --all-extras
3537 - name : Run lint check
@@ -50,24 +52,26 @@ jobs:
5052 KAFKA_PROCESS_ROLES : broker,controller
5153 KAFKA_LISTENERS : PLAINTEXT://0.0.0.0:9092,CONTROLLER://localhost:9093
5254 KAFKA_ADVERTISED_LISTENERS : PLAINTEXT://localhost:9092
53- KAFKA_CONTROLLER_LISTENER_NAMES : CONTROLLER
5455 KAFKA_LISTENER_SECURITY_PROTOCOL_MAP : CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT
56+ KAFKA_CONTROLLER_LISTENER_NAMES : CONTROLLER
5557 KAFKA_CONTROLLER_QUORUM_VOTERS : 1@localhost:9093
5658 strategy :
5759 matrix :
5860 py_version : ["3.10", "3.11", "3.12", "3.13"]
5961 os : [ubuntu-latest]
6062 runs-on : " ${{ matrix.os }}"
6163 steps :
62- - uses : actions/checkout@v5
64+ - uses : actions/checkout@v6
6365 with :
6466 persist-credentials : false
67+ fetch-depth : 0
6568 - id : setup-uv
69+ name : Setup UV
6670 uses : astral-sh/setup-uv@v7
6771 with :
6872 enable-cache : true
6973 cache-suffix : ${{ matrix.py_version }}
70- version : " latest "
74+ github-token : ${{ github.token }}
7175 python-version : ${{ matrix.py_version }}
7276 - name : Install deps
7377 run : uv sync --all-extras
0 commit comments