From 60a418e60c8f51934d7114dbceacb8f69b0237a6 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 21 Oct 2024 16:51:42 -0400 Subject: [PATCH] git --- .github/workflows/distro_tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/distro_tests.yml b/.github/workflows/distro_tests.yml index e18e71031..87ae591b0 100644 --- a/.github/workflows/distro_tests.yml +++ b/.github/workflows/distro_tests.yml @@ -22,16 +22,17 @@ jobs: if [ -f /etc/os-release ]; then . /etc/os-release if [ "$ID" = "ubuntu" ] || [ "$ID" = "debian" ] || [ "$ID" = "kalilinux" ] || [ "$ID" = "parrotsec" ]; then + export DEBIAN_FRONTEND=noninteractive apt-get update - apt-get -y install curl + apt-get -y install curl git elif [ "$ID" = "alpine" ]; then - apk add --no-cache bash gcc g++ musl-dev libffi-dev + apk add --no-cache bash gcc g++ musl-dev libffi-dev curl git elif [ "$ID" = "archlinux" ]; then - pacman -Syu --noconfirm curl + pacman -Syu --noconfirm curl git elif [ "$ID" = "fedora" ]; then - dnf install -y curl + dnf install -y curl git elif [ "$ID" = "gentoo" ]; then - emerge --update --newuse curl + emerge --update --newuse curl git fi fi