From b65c6c70f8de8c4af6dfb4d40763345efcd552be Mon Sep 17 00:00:00 2001 From: Francesco Ballarin Date: Wed, 11 Oct 2023 16:52:30 +0200 Subject: [PATCH] Running apt update -qq is considered to be dangerous, use a single -q instead --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a433ff7..958b768 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: container: ubuntu:rolling setup_container: | export DEBIAN_FRONTEND="noninteractive" - apt -y -qq update + apt update -y -q apt install -y -qq git python3-mpi4py python3-pip rm /usr/lib/python3.*/EXTERNALLY-MANAGED python3 -m pip -q install git+https://github.com/FEniCS/ufl.git @@ -104,8 +104,8 @@ jobs: - uses: actions/checkout@v3 - name: Install dependencies run: | - apt -y -qq update export DEBIAN_FRONTEND="noninteractive" + apt update -y -q apt install -y -qq git python3-pip pip3 -q install coverage - name: Download coverage reports from artifacts