diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml index bcd70381c..235cfd393 100644 --- a/.github/workflows/installer.yml +++ b/.github/workflows/installer.yml @@ -78,7 +78,7 @@ jobs: || contains(matrix.image, 'amazonlinux') - name: install dependencies (zypper) # tar and gzip are needed by the actions/checkout below. - run: zypper --non-interactive install tar gzip + run: zypper --non-interactive install tar gzip ${{ matrix.deps }} if: contains(matrix.image, 'opensuse') - name: install dependencies (apt-get) run: | diff --git a/scripts/installer.sh b/scripts/installer.sh index fd125e5eb..db5af967b 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -159,8 +159,10 @@ main() { PACKAGETYPE="apt" if [ "$VERSION_ID" -lt 20 ]; then APT_KEY_TYPE="legacy" + VERSION="buster" else APT_KEY_TYPE="keyring" + VERSION="bullseye" fi ;; centos)