Skip to content

Commit 16ed449

Browse files
CI: Use apt-get to install system packages
1 parent e3b7ccf commit 16ed449

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/run-tox.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,10 @@ jobs:
2727
uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
30-
- uses: mfinelli/setup-imagemagick@v7
31-
- name: Cache APT Packages
32-
uses: awalsh128/cache-apt-pkgs-action@latest
33-
with:
34-
packages:
35-
poppler-utils
36-
version: 1.1
30+
- name: Install APT Packages
31+
run: |
32+
apt-get update
33+
apt-get install -y poppler-utils imagemagick
3734
- name: Cache tox and precommit environments
3835
uses: actions/cache@v5
3936
with:

0 commit comments

Comments
 (0)