build(deps): bump lxml from 5.4.0 to 6.1.0 #1235
Workflow file for this run
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: dependencies | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| upgrade: | |
| name: Test dependencies | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-22.04 | |
| python: "3.10" | |
| - os: ubuntu-22.04 | |
| python: "3.11" | |
| steps: | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Checkout default branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| path: teuthology | |
| - name: virtualenv | |
| run: | | |
| pip install --user virtualenv | |
| virtualenv ./virtualenv | |
| cd ./virtualenv/lib/python* | |
| touch no-global-site-packages.txt | |
| working-directory: ./teuthology | |
| - name: Refresh system repos | |
| run: | | |
| sudo apt update -y | |
| sudo apt upgrade -y | |
| - name: Initial bootstrap | |
| run: ./bootstrap install | |
| working-directory: ./teuthology | |
| - name: Move initial repository | |
| run: mv teuthology teuthology.orig | |
| - name: Checkout desired ref | |
| uses: actions/checkout@v4 | |
| with: | |
| path: teuthology | |
| - name: Move virtualenv to new checkout | |
| run: mv ./teuthology.orig/virtualenv ./teuthology/ | |
| - name: Re-run bootstrap | |
| run: ./bootstrap install | |
| working-directory: ./teuthology |