From 0da8ac628656cc72821b4bc1a636f089a8e5c4fa Mon Sep 17 00:00:00 2001 From: Maximilian Luz Date: Fri, 9 Dec 2022 17:13:27 +0100 Subject: [PATCH] pkg/debian: Update build container to 22.04 The annotations script depends on Python 3.9 or higher. Let's try the easy way to solve this and update the build container to 22.04, which provides Python 3.10. --- .github/workflows/debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 8f0ffcca6..d1279b0b4 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -18,7 +18,7 @@ jobs: build: name: Build Kernel runs-on: ubuntu-latest - container: ubuntu:20.04 + container: ubuntu:22.04 steps: - name: Checkout code uses: actions/checkout@v2