From 1a3593bc61b0a497833fddc24268f50cf2b2c6dc Mon Sep 17 00:00:00 2001 From: Philip Craig Date: Thu, 13 Aug 2026 12:40:19 +1000 Subject: [PATCH] Fix apt-get install failures in CI --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8506766..3b009f70 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,7 +57,7 @@ jobs: # Starting with Ubuntu 22.04 libc6-dbg is needed. - name: Install libc debug info - run: sudo apt-get install -y libc6-dbg + run: sudo apt-get update && sudo apt-get install -y libc6-dbg shell: bash if: contains(matrix.os, 'ubuntu-24.04')