From 3776a47b9fcc80d13f4590ad866451c662324ff5 Mon Sep 17 00:00:00 2001 From: missytake Date: Fri, 5 Jun 2026 14:01:31 +0200 Subject: [PATCH 1/2] chore(update): upgrade base image to debian 13 --- README.md | 2 +- src/cmlxc/container.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5586000..247970d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ as containers can run with user privileges. You can verify your incus installation like this: - incus launch images:debian/12 local-my-setup + incus launch images:debian/13 local-my-setup If this command fails, please check the incus documentation. If you get an error about "Failed instance creation", diff --git a/src/cmlxc/container.py b/src/cmlxc/container.py index 9301d18..e5c798f 100644 --- a/src/cmlxc/container.py +++ b/src/cmlxc/container.py @@ -29,7 +29,7 @@ DOMAIN_SUFFIX = ".localchat" # Image names -UPSTREAM_IMAGE = "images:debian/12" +UPSTREAM_IMAGE = "images:debian/13" BASE_IMAGE_ALIAS = "localchat-base" # Builder container From f282df702a9c77d7164c6cedce34534ef4324881 Mon Sep 17 00:00:00 2001 From: missytake Date: Wed, 29 Jul 2026 12:42:34 +0200 Subject: [PATCH 2/2] chore: bump cache for debian-13 images --- .github/workflows/lxc-test.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lxc-test.yml b/.github/workflows/lxc-test.yml index 665d3f5..a3b2275 100644 --- a/.github/workflows/lxc-test.yml +++ b/.github/workflows/lxc-test.yml @@ -109,7 +109,7 @@ jobs: uses: actions/cache@v6 with: path: /tmp/incus-cache - key: incus-v5-${{ runner.os }}-${{ hashFiles('cmlxc/src/cmlxc/*.py') }} + key: incus-v5-debian13-${{ runner.os }}-${{ hashFiles('cmlxc/src/cmlxc/*.py') }} - name: Import cached images run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e88a531..c67753d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -68,9 +68,9 @@ jobs: with: path: | /tmp/incus-cache - key: incus-images-v8-${{ runner.os }}-${{ hashFiles('cmlxc/src/cmlxc/incus.py') }} + key: incus-images-v8-debian13-${{ runner.os }}-${{ hashFiles('cmlxc/src/cmlxc/incus.py') }} restore-keys: | - incus-images-v8-${{ runner.os }}- + incus-images-v8-debian13-${{ runner.os }}- - name: Import cached images run: |