From be8008fd356fcd27b197f35686ad86894719bf87 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Fri, 29 Aug 2025 14:41:47 -0400 Subject: [PATCH 1/2] CI: Drop Node.js 18 from CI Connects https://github.com/pelias/pelias/issues/985 --- .github/workflows/_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index 6efcedce5..922130a43 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -7,7 +7,7 @@ jobs: matrix: os: - ubuntu-22.04 - node-version: [ 18.x, 20.x, 22.x ] + node-version: [ 20.x, 22.x ] steps: - uses: actions/checkout@v4 - name: 'Install node.js ${{ matrix.node-version }}' From a73d42dda274dd42c14f5a4f7291b0b8f00e55b2 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Fri, 29 Aug 2025 14:41:51 -0400 Subject: [PATCH 2/2] feat(docker): Upgrade to Node.js 20 baseimage BREAKING CHANGE: The Docker baseimage has been updated to use Node.js 20.19.4, so this repository's Docker image will also use it. https://github.com/pelias/pelias/issues/985