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 c92db0d commit 3326233
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: Install git
run: |
apt -qq update
apt update -y -q
apt install -y -qq git
- name: Mark workspace as safe
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow_call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
with:
set-safe-directory: false
- name: Fetch updated package list
run: apt update -qq
run: apt update -y -q
- name: Install non-pip dependencies of the workflow call library
run: |
apt install -y -qq imagemagick inkscape
Expand Down

0 comments on commit 3326233

Please sign in to comment.