Skip to content

Commit 1b1fee5

Browse files
committed
Remove flaky action downloads from parallel CI
1 parent ddf820a commit 1b1fee5

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/test-parallel.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,14 @@ jobs:
9090
restore-keys: |
9191
${{ runner.os }}-${{ matrix.python }}-uv-
9292
93-
- uses: awalsh128/cache-apt-pkgs-action@latest
94-
with:
95-
packages: git wget ripgrep build-essential python3-dev python3-setuptools libssl-dev libldap2-dev libsasl2-dev zlib1g-dev libatomic1 python3-minimal gnupg2 curl wget python3-ldap python3-msgpack python3-mutagen python3-regex python3-pycryptodome procps
96-
version: 1.1
93+
- name: Install system packages
94+
run: |
95+
sudo apt-get update
96+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \
97+
git wget ripgrep build-essential python3-dev python3-setuptools \
98+
libssl-dev libldap2-dev libsasl2-dev zlib1g-dev libatomic1 \
99+
python3-minimal gnupg2 curl python3-ldap python3-msgpack \
100+
python3-mutagen python3-regex python3-pycryptodome procps
97101
98102
- name: Install dependencies with uv
99103
run: |

0 commit comments

Comments
 (0)