Drop Debian Bullseye Support

This commit is contained in:
Matheson Steplock 2024-10-08 20:49:32 -04:00 committed by GitHub
parent 1292ab7372
commit 8554550e83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -13,7 +13,7 @@ body:
attributes: attributes:
label: OS Version label: OS Version
description: Please Insert the output of `lsb_release -d` description: Please Insert the output of `lsb_release -d`
placeholder: Debian GNU/Linux 11 (bullseye) placeholder: Debian GNU/Linux 12 (bookworm)
validations: validations:
required: true required: true
- type: input - type: input

View file

@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4.2.0 uses: actions/checkout@v4.2.0
- name: Build Debian Package in Docker - name: Build Debian Package in Docker
run: | run: |
docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \ docker run --rm -v $(pwd):/tmp debian:bookworm-slim bash -c \
"cd /tmp \ "cd /tmp \
&& chmod 555 homeassistant-supervised/DEBIAN/p* \ && chmod 555 homeassistant-supervised/DEBIAN/p* \
&& dpkg-deb --build --root-owner-group homeassistant-supervised" && dpkg-deb --build --root-owner-group homeassistant-supervised"

View file

@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4.2.0 uses: actions/checkout@v4.2.0
- name: Build Debian Package in Docker - name: Build Debian Package in Docker
run: | run: |
docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \ docker run --rm -v $(pwd):/tmp debian:bookworm-slim bash -c \
"cd /tmp \ "cd /tmp \
&& chmod 555 homeassistant-supervised/DEBIAN/p* \ && chmod 555 homeassistant-supervised/DEBIAN/p* \
&& dpkg-deb --build --root-owner-group homeassistant-supervised" && dpkg-deb --build --root-owner-group homeassistant-supervised"

View file

@ -3,7 +3,7 @@ Section: base
Version: 1.8.0 Version: 1.8.0
Priority: optional Priority: optional
Architecture: all Architecture: all
Pre-Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved | systemd (>=247.3-7+deb11) Pre-Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved
Depends: bluez, cifs-utils, nfs-common Depends: bluez, cifs-utils, nfs-common
Maintainer: Matheson Steplock <https://mathesonsteplock.ca/> Maintainer: Matheson Steplock <https://mathesonsteplock.ca/>
Homepage: https://www.home-assistant.io/ Homepage: https://www.home-assistant.io/

View file

@ -12,7 +12,7 @@ warn ""
# Check if we are running on a supported OS # Check if we are running on a supported OS
BYPASS_OS_CHECK=${BYPASS_OS_CHECK:-false} BYPASS_OS_CHECK=${BYPASS_OS_CHECK:-false}
supported_os=("Debian GNU/Linux 11 (bullseye)" "Debian GNU/Linux 12 (bookworm)") supported_os=("Debian GNU/Linux 12 (bookworm)")
CURRENT_OS=$(lsb_release -d | awk -F"\t" '{print $2}') CURRENT_OS=$(lsb_release -d | awk -F"\t" '{print $2}')
os_supported=false os_supported=false