CI: Github Action: run "apt-get update" before packages restore

ubuntu somehow needs it, no idea why does not apt-get do it itself.
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 @@
     - name: Install apt dependencies
       if: ${{ startsWith(matrix.os, 'ubuntu-') }}
       run: |
+        sudo apt-get update
         sudo apt-get install -y \
           liblua5.3-dev \
           libpcre2-dev \