build(deps): bump actions/upload-artifact from 4.6.2 to 5.0.0 #1219
Workflow file for this run
This file contains hidden or 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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version: "3.9" | |
| cache: "pip" | |
| cache-dependency-path: pyproject.toml | |
| - name: lint | |
| run: make lint PIP_AUDIT_EXTRA=lint | |
| check-readme: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| # NOTE(ww): Important: use pip-audit's minimum supported Python version | |
| # in this check, since Python can change the `--help` rendering in | |
| # `argparse` between major versions. | |
| with: | |
| python-version: "3.9" | |
| cache: "pip" | |
| cache-dependency-path: pyproject.toml | |
| - name: deps | |
| run: make dev | |
| - name: check-readme | |
| run: make check-readme |