Disabled immediate config on Linux CI libc6-dbg (#188)

Taken from an issue on the Docker for linux repo and a few other places:

https://github.com/docker/for-linux/issues/1131

Ubuntu bug report also seems to indicate this is safe:

https://bugs.launchpad.net/ubuntu-cdimage/+bug/1871268
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7f1a759..c5909c3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -189,7 +189,7 @@
           
           sudo apt-get update
           # libc6-dbg:i386 is required for running valgrind on x86.
-          sudo apt-get install -y ninja-build valgrind libc6-dbg:i386
+          sudo apt-get install -y ninja-build valgrind libc6-dbg:i386 -o APT::Immediate-Configure=0
           if [ "${{ matrix.compiler }}" = "gcc" ]; then
             sudo apt-get install -y g++-${{ matrix.version }} g++-${{ matrix.version }}-multilib
             echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV