From feae78b46075bf04cf7d20fdc02ee8c8d194e0b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 01:36:32 +0000 Subject: [PATCH 1/3] Update github/codeql-action action to v4.35.4 --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 53480e5..99b6cd6 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -30,12 +30,12 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Initialize CodeQL - uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3 + uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3 + uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4 with: category: "/language:${{matrix.language}}" From efde1441bd4263009422223c17b5eebdfcc4bfee Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Mon, 11 May 2026 13:14:12 +0900 Subject: [PATCH 2/3] Don't install protoc when syncing it Signed-off-by: Anuraag Agrawal --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 836b862..af4f02e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -129,7 +129,7 @@ jobs: workdir: protoc-gen-connect-python - run: | - uv sync --frozen + uv sync --frozen --no-install-project uv run python scripts/generate_wheels.py working-directory: protoc-gen-connect-python diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0b5abef..58d037f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,7 +38,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - uv sync --frozen + uv sync --frozen --no-install-project uv run python scripts/generate_wheels.py working-directory: protoc-gen-connect-python From 1d83377cef4e3bc3cd1813f18dd5bcd750d80282 Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Mon, 11 May 2026 13:42:43 +0900 Subject: [PATCH 3/3] no-sync too Signed-off-by: Anuraag Agrawal --- .github/workflows/ci.yaml | 3 ++- .github/workflows/release.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index af4f02e..0add251 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -129,8 +129,9 @@ jobs: workdir: protoc-gen-connect-python - run: | + # Make sure uv doesn't build the project since the data files aren't ready yet. uv sync --frozen --no-install-project - uv run python scripts/generate_wheels.py + uv run --no-sync python scripts/generate_wheels.py working-directory: protoc-gen-connect-python - uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 58d037f..8dbc4a7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,8 +38,9 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | + # Make sure uv doesn't build the project since the data files aren't ready uv sync --frozen --no-install-project - uv run python scripts/generate_wheels.py + uv run --no-sync python scripts/generate_wheels.py working-directory: protoc-gen-connect-python - uses: actions/attest@59d89421af93a897026c735860bf21b6eb4f7b26 # v4.1.0