1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-12-22 22:51:12 +02:00

Don’t automatically install recommended packages (#2923)

Co-authored-by: Michael Kerscher <kerscher@google.com>
This commit is contained in:
Martin Geisler
2025-10-01 22:33:48 +02:00
committed by GitHub
parent 0a734e9f02
commit 17a04070ed
2 changed files with 14 additions and 2 deletions

View File

@@ -41,4 +41,4 @@ runs:
- name: Installing ${{ inputs.packages }}
shell: bash
run: |
sudo apt-get install --quiet --yes ${{ inputs.packages }}
sudo apt-get install --quiet --yes --no-install-recommends ${{ inputs.packages }}