Skip to content

Bump docker/login-action from 2 to 4 #3868

Bump docker/login-action from 2 to 4

Bump docker/login-action from 2 to 4 #3868

Workflow file for this run

---
name: pre-commit
on:
pull_request:
push:
jobs:
pre-commit:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
#//TEMP we need to check only modified files WRT main
- name: Install requirements (apt)
run: |
sudo apt-get update
sudo apt-get install -y libvirt-dev
- name: Install requirements (uv pip)
run: |
python_version=$(python3 --version 2>&1 | awk '{print $2}' | cut -d. -f1,2)
curl -LsSf https://astral.sh/uv/install.sh | sh
make UV_PYTHON=$python_version venv
make UV_PYTHON=$python_version install
make UV_PYTHON=$python_version install-pre-commit
- name: Run pre-commit (all)
run: |
source .venv/bin/activate
make pre-commit-run-all