Bump docker/login-action from 2 to 4 #3868
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 |