From e7173c9d0edb77051b6bd90df6f129842c9b0c8b Mon Sep 17 00:00:00 2001 From: "M. Nihat Gurmen" Date: Wed, 29 Apr 2026 12:21:08 -0500 Subject: [PATCH] build(release): upgrade pip in pypi.yml build tooling step Adds pip itself to the upgrade list alongside build and twine. --- .github/workflows/pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 9af52f2..dabb56b 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -53,7 +53,7 @@ jobs: PY - name: Install build tooling - run: python -m pip install --upgrade build twine + run: python -m pip install --upgrade pip build twine # Defense-in-depth: refuse to publish if any production dep has a known # CVE. CI runs the same audit on every PR (.github/workflows/ci.yml),