From c800077b731ee28cf0841a5d69ce12ea27d4d1e6 Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Mon, 14 Feb 2022 00:35:54 +0100 Subject: [PATCH] Fix GitHub actions once again --- .github/workflows/fastfetch-check.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/fastfetch-check.yml b/.github/workflows/fastfetch-check.yml index bc16282f..9764eb98 100644 --- a/.github/workflows/fastfetch-check.yml +++ b/.github/workflows/fastfetch-check.yml @@ -25,8 +25,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Install packages - run: sudo apt-get update && sudo apt-get install -y libpci-dev libvulkan-dev libwayland-dev libxrandr-dev libxcb-randr0-dev libdconf-dev libdbus-1-dev libxfconf-0-dev librpm-dev + - name: Update and install packages + run: sudo apt-get update && sudo apt upgrade && sudo apt-get install -y libpci-dev libvulkan-dev libwayland-dev libxrandr-dev libxcb-randr0-dev libdconf-dev libdbus-1-dev libxfconf-0-dev librpm-dev libzstd-dev + + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} - name: Configure run: cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} . @@ -40,10 +45,5 @@ jobs: - name: Run fastfetch-test-strbuf run: ./fastfetch-test-strbuf - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1