Skip to content

build(deps): bump actions/setup-python from 5.3.0 to 5.4.0 (#876) #984

build(deps): bump actions/setup-python from 5.3.0 to 5.4.0 (#876)

build(deps): bump actions/setup-python from 5.3.0 to 5.4.0 (#876) #984

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
# 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