From b2fce2946c8733b4f248b41574dfbeed7f9a46ba Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Thu, 11 Jun 2026 10:41:56 +0200 Subject: [PATCH] feat: remove node 20 support Co-Authored-By: Claude --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- README.md | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 964a4e2..e63298d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - base-image-tag: [20-bookworm, 22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie] + base-image-tag: [22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie] steps: - uses: actions/checkout@master - name: Determine Java version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb1c54a..fdfed4c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - base-image-tag: [20-bookworm, 22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie] + base-image-tag: [22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie] steps: - uses: actions/checkout@v3 - name: Determine Java version diff --git a/README.md b/README.md index 1fccaa6..5475813 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ The default tag `latest` contains Node 26. For specific Node versions, use the following tags: ``` -docker pull ppiper/node-browsers:20-bookworm docker pull ppiper/node-browsers:22-bookworm docker pull ppiper/node-browsers:22-trixie docker pull ppiper/node-browsers:24-bookworm @@ -47,7 +46,7 @@ To build this image locally, open a terminal in the directory of the Dockerfile docker build --build-arg=BASE_IMAGE_TAG=26-trixie -t ppiper/node-browsers . ``` -Where the `BASE_IMAGE_TAG` can be set to `20-bookworm`, `22-bookworm`, `22-trixie`, `24-bookworm`, `24-trixie`, or `26-trixie`. +Where the `BASE_IMAGE_TAG` can be set to `22-bookworm`, `22-trixie`, `24-bookworm`, `24-trixie`, or `26-trixie`. The given tag **must** exist in the [node](https://hub.docker.com/_/node) base image **and** use Debian GNU/Linux. ## Usage