CVE-2024-0397 #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify bundled pip and setuptools | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'Lib/ensurepip/_bundled/**' | |
- '.github/workflows/verify-ensurepip-wheels.yml' | |
- 'Tools/scripts/verify_ensurepip_wheels.py' | |
pull_request: | |
paths: | |
- 'Lib/ensurepip/_bundled/**' | |
- '.github/workflows/verify-ensurepip-wheels.yml' | |
- 'Tools/scripts/verify_ensurepip_wheels.py' | |
permissions: | |
contents: read | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3' | |
- name: Compare checksums of bundled pip and setuptools to ones published on PyPI | |
run: ./Tools/scripts/verify_ensurepip_wheels.py |