Skip to content

Commit

Permalink
Running apt update -qq is considered to be dangerous, use a single -q…
Browse files Browse the repository at this point in the history
… instead
  • Loading branch information
francesco-ballarin committed Oct 11, 2023
1 parent 9e51df2 commit b65c6c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b65c6c7

Please sign in to comment.