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
+17
View File
@@ -88,3 +88,20 @@ body:
- x86
- arm32
- Other (please specify in the Additional Information area at the end)
- type: input
id: version
validations:
required: false
attributes:
label: What version of bottom are you running?
description: >
Please specify which version of `bottom` you're running if relevant (e.g. there's an installation
issue with a specific release). You can find this with `btm -V`. If you are using a
nightly/non-release version, please also specify that.
If you're not running the latest version, it would also be helpful to
see if [the latest
version](https://github.com/ClementTsang/bottom/releases/latest) solves
the issue first.
placeholder: 0.14.6
+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