Skip to content

Commit a76fdba

Browse files
authored
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.
1 parent 4859a2d commit a76fdba

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

.github/ISSUE_TEMPLATE/packaging.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,20 @@ body:
8888
- x86
8989
- arm32
9090
- Other (please specify in the Additional Information area at the end)
91+
92+
- type: input
93+
id: version
94+
validations:
95+
required: false
96+
attributes:
97+
label: What version of bottom are you running?
98+
description: >
99+
Please specify which version of `bottom` you're running if relevant (e.g. there's an installation
100+
issue with a specific release). You can find this with `btm -V`. If you are using a
101+
nightly/non-release version, please also specify that.
102+
103+
If you're not running the latest version, it would also be helpful to
104+
see if [the latest
105+
version](https://github.com/ClementTsang/bottom/releases/latest) solves
106+
the issue first.
107+
placeholder: 0.14.6

.github/workflows/build_releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ jobs:
404404

405405
build-deb:
406406
name: "Build .deb software packages"
407-
runs-on: ${{ matrix.info.os || 'ubuntu-24.04' }}
407+
runs-on: ${{ matrix.info.os || 'ubuntu-22.04' }}
408408
timeout-minutes: 12
409409
strategy:
410410
fail-fast: false

0 commit comments

Comments
 (0)