ci: properly use 22.04 for build-deb job (#2177)

At some point I accidentally changed the default to 24.04 when refactoring things. This means it won't work for some older Debian-based systems like bookworm, primarily for x86, since ARM was correctly using an override. This change just reverts the default back.
This commit is contained in:
Clement Tsang
2026-07-26 22:52:34 -04:00
committed by GitHub
parent 4859a2d317
commit a76fdba951
2 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -404,7 +404,7 @@ jobs:
build-deb:
name: "Build .deb software packages"
runs-on: ${{ matrix.info.os || 'ubuntu-24.04' }}
runs-on: ${{ matrix.info.os || 'ubuntu-22.04' }}
timeout-minutes: 12
strategy:
fail-fast: false