From 91f22ef5ed8861fdd8eacb8ddd03321a20e62a2e Mon Sep 17 00:00:00 2001 From: Andrew Bierman <94939237+andrew-bierman@users.noreply.github.com> Date: Sat, 28 Oct 2023 15:54:41 -0400 Subject: [PATCH] removing node 16 --- .github/workflows/node.js.yml | 2 +- Dockerfile.prod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index d859eb198..4526c5789 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false # This ensures that all versions are tested even if one fails. matrix: - node-version: [16.x, 18.x, 20.x] # Node.js versions to test against. Removed 14.x as it is EOL + Tamagui errors on it. + node-version: [18.x, 20.x] # Node.js versions to test against. Removed 14.x as it is EOL + Tamagui errors on it. # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/Dockerfile.prod b/Dockerfile.prod index 11de84862..821cb1106 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -1,5 +1,5 @@ # Use an official node runtime as the parent image -FROM node:16 +FROM node:20 # Set the working directory in the container WORKDIR /usr/src/app