From 2ca5cb4604960c673be9c12516833ceba7fa79bf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 10 Aug 2023 19:59:26 +0000 Subject: [PATCH] chore(deps): update node.js to v20 --- .gitlab/workflows/e2e.gitlab-ci.yml | 2 +- .gitlab/workflows/nodejs.gitlab-ci.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/workflows/e2e.gitlab-ci.yml b/.gitlab/workflows/e2e.gitlab-ci.yml index 3dd17b8b87..0d5a695def 100644 --- a/.gitlab/workflows/e2e.gitlab-ci.yml +++ b/.gitlab/workflows/e2e.gitlab-ci.yml @@ -1,6 +1,6 @@ e2e: stage: test - image: node:18.16.0 + image: node:20.5.1 variables: POSTGRES_DB: test-misskey POSTGRES_HOST_AUTH_METHOD: trust diff --git a/.gitlab/workflows/nodejs.gitlab-ci.yml b/.gitlab/workflows/nodejs.gitlab-ci.yml index 7c82435df9..4209d75886 100644 --- a/.gitlab/workflows/nodejs.gitlab-ci.yml +++ b/.gitlab/workflows/nodejs.gitlab-ci.yml @@ -1,5 +1,5 @@ test: - image: node:18.16.0 + image: node:20.5.1 variables: POSTGRES_USER: misskey POSTGRES_DB: test-misskey diff --git a/Dockerfile b/Dockerfile index 1381306ea1..21d24d8c4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.16.0-alpine3.16 AS base +FROM node:20.2.0-alpine3.16 AS base WORKDIR /misskey