diff --git a/.github/workflows/ci-pr-validation.yml b/.github/workflows/ci-pr-validation.yml index 69fde8e1..375064d0 100644 --- a/.github/workflows/ci-pr-validation.yml +++ b/.github/workflows/ci-pr-validation.yml @@ -173,16 +173,14 @@ 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: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: 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 \