Skip to content

Bump Tornado to fix GHSA-w235-7p84-xx57 and GHSA-753j-mpmx-qq6g #186

Bump Tornado to fix GHSA-w235-7p84-xx57 and GHSA-753j-mpmx-qq6g

Bump Tornado to fix GHSA-w235-7p84-xx57 and GHSA-753j-mpmx-qq6g #186

Workflow file for this run

---
# yamllint disable rule:line-length
name: Pre-commit checks
# yamllint disable-line rule:truthy
on:
push:
paths:
- '**.py'
- github_action_scripts/python_setup.sh
- .github/workflows/precommit.yml
- .pre-commit-config.yaml
jobs:
precommit-checks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Pre-commit checks
run: |
set -euxo pipefail
${GITHUB_WORKSPACE}/github_action_scripts/python_setup.sh
source ${HOME}/venv/bin/activate
pre-commit run --all-files