File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,23 @@ jobs:
1515
1616 steps :
1717 - name : Checkout repository
18- uses : actions/checkout@v4
18+ uses : actions/checkout@v5
1919
2020 - name : Set up Python ${{ matrix.python-version }}
2121 uses : actions/setup-python@v5
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424
2525 - name : Checkout
26- uses : actions/checkout@v4
26+ uses : actions/checkout@v5
2727 with :
2828 submodules : recursive
2929
30+ - name : Install system dependencies
31+ run : |
32+ sudo apt-get update
33+ sudo apt-get install -y libcairo2-dev pkg-config
34+
3035 - name : Install Poetry
3136 run : pip install poetry==2.1.1
3237
Original file line number Diff line number Diff line change 1919 name : Deploy Docs through mike
2020 runs-on : ubuntu-latest
2121 steps :
22- - uses : actions/checkout@v4
22+ - uses : actions/checkout@v5
2323
2424 - name : Set up Python
2525 uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments