From e48853aaf4dd3a49361fef89e0aff1ddc3e09fbe Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Sat, 21 Nov 2020 13:42:19 +0500 Subject: [PATCH] CI: Github Action: run "apt-get update" before packages restore ubuntu somehow needs it, no idea why does not apt-get do it itself. --- .github/workflows/vtest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index 28e8141..c88d4aa 100644 --- a/.github/workflows/vtest.yml +++ b/.github/workflows/vtest.yml @@ -46,6 +46,7 @@ jobs: - name: Install apt dependencies if: ${{ startsWith(matrix.os, 'ubuntu-') }} run: | + sudo apt-get update sudo apt-get install -y \ liblua5.3-dev \ libpcre2-dev \ -- 1.7.10.4