From e68868ffa0455751bff194eecea4de0059d1c72e Mon Sep 17 00:00:00 2001 From: MichaIng Date: Tue, 12 Dec 2023 19:22:46 +0100 Subject: [PATCH] [CI] Install xz-utils to decompress shellcheck Signed-off-by: MichaIng --- .github/workflows/shellcheck.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index f1f2e84ae..089bf895c 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -14,6 +14,10 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login runs-on: ubuntu-22.04 steps: + - name: Install xz-utils + run: | + sudo apt-get -q update + sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends xz-utils - uses: actions/checkout@v4 - name: Download shellcheck run: |