From 0b58a605099e016c7fff5c7fd6143c8f555ca729 Mon Sep 17 00:00:00 2001 From: Umer Saleem Date: Fri, 14 Apr 2023 00:17:30 +0500 Subject: [PATCH] Fix OpenZFS build issue for Debian Bookworm dkms package layout is changed in bookworm and splits into dh-dkms package. Debhelper in Bookworm is updated to use dh-sequence-dkms instead of dkms. GitHub Actions are updated to use Ubuntu 22.04 instead of Ubuntu 20.04, since dh-sequence-dkms is not aavailable on Ubuntu 20.04. Signed-off-by: Umer Saleem --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d47f9a02a0..1a10ed9b28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,14 +39,14 @@ jobs: if: success() build-native-deb: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 container: image: debian:testing steps: - name: Installing Dependencies run: | apt update > /dev/null 2>&1 - apt install -y debhelper-compat devscripts > /dev/null 2>&1 + apt install -y linux-image-amd64 linux-headers-amd64 debhelper-compat devscripts > /dev/null 2>&1 - name: Checkout uses: actions/checkout@v2