Skip to content

Bump actions/setup-python from 6.2.0 to 6.3.0 in the actions group #1630

Bump actions/setup-python from 6.2.0 to 6.3.0 in the actions group

Bump actions/setup-python from 6.2.0 to 6.3.0 in the actions group #1630

Workflow file for this run

name: Lint code
on: [push, pull_request]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "3.x"
- name: Run pre-commit
run: |
python -m pip install pre-commit==4.6.0
pre-commit run --show-diff-on-failure --color=always --all-files