Remove unused pip dependency (#2711)

df7bbb28d5 removed the use of this.
Also convert string to an array to reduce merge conflicts and
alphabetize packages for readability.
This commit is contained in:
Andrew Gaul
2025-08-27 08:25:38 +09:00
committed by GitHub
parent bae0facba3
commit e8b5a4109a
2 changed files with 258 additions and 39 deletions

View File

@ -77,10 +77,13 @@ jobs:
# [NOTE]
# On openSUSE, tar and gzip must be installed before action/checkout.
#
- name: Install packages before checkout
- name: Install openSUSE packages before checkout
if: matrix.container == 'opensuse/leap:15'
run: |
zypper install -y tar gzip
run: zypper install -y tar gzip
- name: Install Alpine packages before checkout
if: matrix.container == 'alpine:3.22'
run: apk add --no-progress --no-cache bash
- name: Checkout source code
uses: actions/checkout@v4