From 3e177533828d6bea6f2d44a1530c522b51ee2ca5 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 5 Aug 2025 13:19:15 +0200 Subject: [PATCH 1/2] Remove bullseye images --- .github/workflows/builder.yml | 6 +++--- README.md | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index e714d33..4a409b1 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -11,7 +11,7 @@ env: ALPINE_LATEST: "3.22" DEBIAN_LATEST: "bookworm" UBUNTU_LATEST: "20.4" - RASPBIAN_LATEST: "bullseye" + RASPBIAN_LATEST: "bookworm" PYTHON_LATEST: "3.13" jobs: @@ -115,7 +115,7 @@ jobs: strategy: matrix: arch: ${{ fromJson(needs.init.outputs.architectures_debian) }} - version: ["bullseye", "bookworm"] + version: ["bookworm"] steps: - name: Checkout the repository uses: actions/checkout@v4.2.2 @@ -204,7 +204,7 @@ jobs: strategy: matrix: arch: ${{ fromJson(needs.init.outputs.architectures_raspbian) }} - version: ["bullseye", "bookworm"] + version: ["bookworm"] steps: - name: Checkout the repository uses: actions/checkout@v4.2.2 diff --git a/README.md b/README.md index 4cf8781..e08257c 100644 --- a/README.md +++ b/README.md @@ -43,11 +43,11 @@ We support the latest 3 release with the latest 3 Alpine version. | Image | OS | Tags | latest | |-------|----|------|--------| -| armv7-base-debian | Debian | bullseye, bookworm | bookworm | -| armhf-base-debian | Debian | bullseye, bookworm | bookworm | -| aarch64-base-debian | Debian | bullseye, bookworm | bookworm | -| amd64-base-debian | Debian | bullseye, bookworm | bookworm | -| i386-base-debian | Debian | bullseye, bookworm | bookworm | +| armv7-base-debian | Debian | bookworm | bookworm | +| armhf-base-debian | Debian | bookworm | bookworm | +| aarch64-base-debian | Debian | bookworm | bookworm | +| amd64-base-debian | Debian | bookworm | bookworm | +| i386-base-debian | Debian | bookworm | bookworm | ### Ubuntu images @@ -64,4 +64,4 @@ We support the latest 3 release with the latest 3 Alpine version. | Image | OS | Tags | latest | |-------|----|------|--------| -| armhf-base-raspbian | Raspbian | bullseye, bookworm | bullseye | +| armhf-base-raspbian | Raspbian | bookworm | bookworm | From 3b9f82e7995674deb429796293190bb585ba2324 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 5 Aug 2025 13:19:52 +0200 Subject: [PATCH 2/2] Add fail-fast false to Python builds to make restarts easier --- .github/workflows/builder.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 4a409b1..7ff19d8 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -247,6 +247,7 @@ jobs: id-token: write packages: write strategy: + fail-fast: false matrix: arch: ${{ fromJson(needs.init.outputs.architectures_alpine) }} version: ["3.20", "3.21", "3.22"]