From d8e9c38cedfbb96143293862dd3743330f58027b Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 18 Sep 2024 20:30:58 +0200 Subject: [PATCH] fix(ci): add '-y' flag to apt install for non-interactive execution Included the '-y' flag to the 'apt install libpq-dev' command in the GitHub Actions workflow to ensure it proceeds without manual intervention. This change prevents the workflow from stalling during the package installation step, facilitating smoother automated CI runs. --- .github/workflows/perl.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/perl.yml b/.github/workflows/perl.yml index e5100e2..3eccadd 100644 --- a/.github/workflows/perl.yml +++ b/.github/workflows/perl.yml @@ -42,7 +42,7 @@ jobs: rm -f cpanfile.snapshot cp .github/travelynx.conf travelynx.conf - name: Install PostgreSQL Client Library - run: apt install libpq-dev + run: apt install libpq-dev -y - name: Install Perl Dependencies run: curl -sL https://raw.githubusercontent.com/skaji/cpm/master/cpm | perl - install -g --show-build-log-on-failure - name: Run Tests