From 2d28dba453d9189909a40a26c603de55a8ecfab0 Mon Sep 17 00:00:00 2001 From: Yuri Mizushima Date: Thu, 10 Sep 2026 19:21:49 +0900 Subject: [PATCH 1/2] chore: switch to the Bookworm image --- .github/workflows/ci-pr-validation.yml | 8 ++++---- pkg/linux/Dockerfile_linux_glibc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-pr-validation.yml b/.github/workflows/ci-pr-validation.yml index 69fde8e1..65ac099e 100644 --- a/.github/workflows/ci-pr-validation.yml +++ b/.github/workflows/ci-pr-validation.yml @@ -173,10 +173,10 @@ jobs: - name: Test NAPI file in linux_glibc containers if: matrix.image == 'linux_glibc' run: | - ./tests/load-test.sh node:16-bullseye ${{matrix.cpu.platform}} - ./tests/load-test.sh node:18-bullseye ${{matrix.cpu.platform}} - ./tests/load-test.sh node:19-bullseye ${{matrix.cpu.platform}} - ./tests/load-test.sh node:22-bullseye ${{matrix.cpu.platform}} + ./tests/load-test.sh node:16-bookworm ${{matrix.cpu.platform}} + ./tests/load-test.sh node:18-bookworm ${{matrix.cpu.platform}} + ./tests/load-test.sh node:19-bookworm ${{matrix.cpu.platform}} + ./tests/load-test.sh node:22-bookworm ${{matrix.cpu.platform}} - name: Test NAPI file in linux_musl containers if: matrix.image == 'linux_musl' diff --git a/pkg/linux/Dockerfile_linux_glibc b/pkg/linux/Dockerfile_linux_glibc index 7c4615bb..ab4b48c6 100644 --- a/pkg/linux/Dockerfile_linux_glibc +++ b/pkg/linux/Dockerfile_linux_glibc @@ -19,7 +19,7 @@ ARG NODE_VERSION -FROM node:${NODE_VERSION}-bullseye +FROM node:${NODE_VERSION}-bookworm RUN apt-get update -y && \ apt-get install -y \ From b953da95a629ee6a5037c2424bcb8ca21e4ced8c Mon Sep 17 00:00:00 2001 From: Yuri Mizushima Date: Fri, 11 Sep 2026 09:39:53 +0900 Subject: [PATCH 2/2] chore: remove node 19 images from the ci --- .github/workflows/ci-pr-validation.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci-pr-validation.yml b/.github/workflows/ci-pr-validation.yml index 65ac099e..375064d0 100644 --- a/.github/workflows/ci-pr-validation.yml +++ b/.github/workflows/ci-pr-validation.yml @@ -175,14 +175,12 @@ jobs: run: | ./tests/load-test.sh node:16-bookworm ${{matrix.cpu.platform}} ./tests/load-test.sh node:18-bookworm ${{matrix.cpu.platform}} - ./tests/load-test.sh node:19-bookworm ${{matrix.cpu.platform}} ./tests/load-test.sh node:22-bookworm ${{matrix.cpu.platform}} - name: Test NAPI file in linux_musl containers if: matrix.image == 'linux_musl' run: | ./tests/load-test.sh node:18-alpine ${{matrix.cpu.platform}} - ./tests/load-test.sh node:19-alpine ${{matrix.cpu.platform}} ./tests/load-test.sh node:22-alpine ${{matrix.cpu.platform}} windows-napi: