From f1bb9d352f9eb6fc89625725089fe0ac6751a376 Mon Sep 17 00:00:00 2001 From: Matthias Vogel Date: Fri, 6 Mar 2026 09:19:17 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20update=20node=20to=202?= =?UTF-8?q?5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 10 +++++----- README.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1951aad..0e35ac0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,19 +14,19 @@ jobs: strategy: fail-fast: false matrix: - node: [ 16, 17, 18, 19, 20, 21, 22 ] + node: [ 18, 19, 20, 21, 22, 23, 24, 25 ] distroAddon: [ '', '-alpine' ] include: - - node: 20 + - node: 24 distroAddon: '' additionalTags: "ghcr.io/pluswerk/node-dev:lts,pluswerk/node-dev:lts," - - node: 20 + - node: 24 distroAddon: '-alpine' additionalTags: "ghcr.io/pluswerk/node-dev:lts-alpine,pluswerk/node-dev:lts-alpine," - - node: 22 + - node: 25 distroAddon: '' additionalTags: "ghcr.io/pluswerk/node-dev:latest,ghcr.io/pluswerk/node-dev:current,pluswerk/node-dev:latest,pluswerk/node-dev:current," - - node: 22 + - node: 25 distroAddon: '-alpine' additionalTags: "ghcr.io/pluswerk/node-dev:latest-alpine,ghcr.io/pluswerk/node-dev:current-alpine,pluswerk/node-dev:latest-alpine,pluswerk/node-dev:current-alpine," steps: diff --git a/README.md b/README.md index 618a6f8..dad70b9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ NODE-DEV is a small package that adds some tools to ease the development inside It is derived from [pluswerk/php-dev](https://github.com/pluswerk/php-dev/) and includes `git`, `ssh`, `vim`, `nano`, `ping`, `mysql`, `mysqldump`, and autocomplete for `git` -It comes with versions for: `current`/`21`, `20`, `19`, `lts`/`18`, `17`, `16`, `15`, `14`, `13` and `12`. +It comes with versions for: `current`/`25`, `lts`/`24`, `23`, `22`, `21`, `20`, `19`, `18` All images after `18` are also available as `alpine` versions. eg: `lts-alpine`, `current-alpine`, `20-alpine` From a58ccfb6df0b4d3e654f3584a824263a573a43af Mon Sep 17 00:00:00 2001 From: Matthias Vogel Date: Fri, 6 Mar 2026 08:26:32 +0000 Subject: [PATCH 2/2] Remove arm/v7 platform from Docker build configuration --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e35ac0..9f82c25 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,7 +59,7 @@ jobs: build-args: | FROM=node:${{ matrix.node }}${{ matrix.distroAddon }} DIST_ADDON=${{ matrix.distroAddon }} - platforms: linux/amd64,linux/arm/v7,linux/arm64/v8 + platforms: linux/amd64,linux/arm64/v8 - name: Image digest run: |