Skip to content

Commit f50ee2c

Browse files
Update github/codeql-action action to v4.35.4 (#244)
Signed-off-by: Anuraag Agrawal <anuraaga@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Anuraag Agrawal <anuraaga@gmail.com>
1 parent 3189d1d commit f50ee2c

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,9 @@ jobs:
129129
workdir: protoc-gen-connect-python
130130

131131
- run: |
132-
uv sync --frozen
133-
uv run python scripts/generate_wheels.py
132+
# Make sure uv doesn't build the project since the data files aren't ready yet.
133+
uv sync --frozen --no-install-project
134+
uv run --no-sync python scripts/generate_wheels.py
134135
working-directory: protoc-gen-connect-python
135136
136137
- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3131

3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
33+
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
3434
with:
3535
languages: ${{ matrix.language }}
3636
build-mode: ${{ matrix.build-mode }}
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
39+
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
4040
with:
4141
category: "/language:${{matrix.language}}"

.github/workflows/release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ jobs:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939

4040
- run: |
41-
uv sync --frozen
42-
uv run python scripts/generate_wheels.py
41+
# Make sure uv doesn't build the project since the data files aren't ready
42+
uv sync --frozen --no-install-project
43+
uv run --no-sync python scripts/generate_wheels.py
4344
working-directory: protoc-gen-connect-python
4445
4546
- uses: actions/attest@59d89421af93a897026c735860bf21b6eb4f7b26 # v4.1.0

0 commit comments

Comments
 (0)