From 3b422df703c96f00142c673c96153b59006febee Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Thu, 27 Oct 2022 13:55:41 +0200 Subject: [PATCH] [GitHub Actions] quiet apt-get --- .github/workflows/common.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index c0452551..89cbb15c 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -125,7 +125,7 @@ jobs: with: java-version: ${{ needs.parameters.outputs.jdk_build }} - name: 'Configure: Install xsltproc' - run: sudo apt-get install -y xsltproc + run: sudo apt-get install -q -y xsltproc - name: 'Action: build initial dependencies' shell: bash env: @@ -179,7 +179,7 @@ jobs: with: java-version: ${{ needs.parameters.outputs.jdk_build }} - name: 'Configure: Install xsltproc' - run: sudo apt-get install -y xsltproc + run: sudo apt-get install -q -y xsltproc - name: 'Configure: Install Pack' uses: ./.github/actions/install-pack - name: 'Build: ${{ matrix.app }}' @@ -227,7 +227,7 @@ jobs: with: java-version: ${{ needs.parameters.outputs.jdk_build }} - name: 'Configure: Install xsltproc' - run: sudo apt-get install -y xsltproc + run: sudo apt-get install -q -y xsltproc - name: 'Configure: Install Pack' uses: ./.github/actions/install-pack - name: 'Build: ${{ matrix.app }}' @@ -276,7 +276,7 @@ jobs: with: java-version: ${{ needs.parameters.outputs.jdk_build }} - name: 'Configure: Install xsltproc' - run: sudo apt-get install -y xsltproc + run: sudo apt-get install -q -y xsltproc - name: 'Configure: Install Pack' uses: ./.github/actions/install-pack - name: 'Build: ${{ matrix.app }}'