Skip to content

fix: override yaml version to fix dependeabot alert 117 #1059

fix: override yaml version to fix dependeabot alert 117

fix: override yaml version to fix dependeabot alert 117 #1059

name: pre-commit hooks
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: set up python 3.10
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.10"
- name: install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: run static analysis
run: |
pre-commit run --all-files