From 3381b9f301fd1c3a3d239c4bb0240e2c724776f9 Mon Sep 17 00:00:00 2001 From: Nardo86 <64206225+Nardo86@users.noreply.github.com> Date: Mon, 25 May 2026 10:33:56 +0200 Subject: [PATCH] chore: bump base image to bookworm and refresh action versions Bullseye is on its way to LTS-only support and the monthly publish workflow had been disabled by GitHub for inactivity, leaving the image stale since 2025-10. Moving to bookworm-slim brings a newer NUT and a supported base; the build-push-action v5 -> v6 bump keeps the build toolchain current. Pushing this commit also re-enables the scheduled workflow. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/docker-publish.yml | 2 +- .github/workflows/test-build.yml | 6 +++--- Dockerfile | 2 +- README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 97dfef1..5eaccff 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -55,7 +55,7 @@ jobs: - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64,linux/arm64,linux/arm/v7 diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 581e66d..1222a6a 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -17,7 +17,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Test build AMD64 - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64 @@ -27,7 +27,7 @@ jobs: cache-to: type=gha,mode=max - name: Test build ARM64 - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . platforms: linux/arm64 @@ -37,7 +37,7 @@ jobs: cache-to: type=gha,mode=max - name: Test build ARM32 - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . platforms: linux/arm/v7 diff --git a/Dockerfile b/Dockerfile index 93df7f5..b881c2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bullseye-slim +FROM debian:bookworm-slim # Environment variables with defaults ENV TZ=Etc/UTC diff --git a/README.md b/README.md index e5ab12f..843218c 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ This is a community project maintained on a volunteer basis. ## Version Information -- **Base Image**: Debian Bullseye Slim +- **Base Image**: Debian Bookworm Slim - **NUT Version**: Latest available from Debian repositories - **Architectures**: ARM32, ARM64, AMD64 - **Update Schedule**: Automated monthly builds