From 8c0cafa3eceeb14cad4977eaf3c7bfcb675cf1ba Mon Sep 17 00:00:00 2001 From: k00b Date: Tue, 8 Oct 2024 15:21:11 -0500 Subject: [PATCH] bump nodejs version --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- package-lock.json | 12 ++++++------ package.json | 4 ++-- worker/Dockerfile | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 72c37dc1..00267f4b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: "18.17.0" + node-version: "18.20.4" - name: Install run: npm install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6008a8c4..c3545ff3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: "18.17.0" + node-version: "18.20.4" - name: Install run: npm install diff --git a/Dockerfile b/Dockerfile index a68fc881..2e7db085 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM node:18.17.0-bullseye +FROM node:18.20.4-bullseye ENV NODE_ENV=development diff --git a/package-lock.json b/package-lock.json index 6636ffae..070af28e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -53,7 +53,7 @@ "micromark-extension-gfm": "^3.0.0", "next": "^13.5.7", "next-auth": "^4.23.2", - "next-plausible": "^3.11.1", + "next-plausible": "^3.12.2", "next-seo": "^6.1.0", "node-s3-url-encode": "^0.0.4", "nodemailer": "^6.9.6", @@ -111,7 +111,7 @@ "standard": "^17.1.0" }, "engines": { - "node": "18.17.0" + "node": "18.20.4" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -15138,14 +15138,14 @@ } }, "node_modules/next-plausible": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/next-plausible/-/next-plausible-3.11.1.tgz", - "integrity": "sha512-Gd+QU+XflVTx65yJ2cNZyrOQLrpz3uKjGLEG4ls+CIVqK3yjsVGCMsEWJcvv1LAeVfHUQtCyp1xyAltLn5Odcg==", + "version": "3.12.2", + "resolved": "https://registry.npmjs.org/next-plausible/-/next-plausible-3.12.2.tgz", + "integrity": "sha512-jyOYLAdwaZZR6nrzFhN9xfVjzYOG6mIQ/LLDCfdAS99ELy759cKfNxluGo+pI2Xh9cYxTFYYZGlnkyR3IPy4yg==", "funding": { "url": "https://github.com/4lejandrito/next-plausible?sponsor=1" }, "peerDependencies": { - "next": "^11.1.0 || ^12.0.0 || ^13.0.0", + "next": "^11.1.0 || ^12.0.0 || ^13.0.0 || ^14.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } diff --git a/package.json b/package.json index d0147e0e..88b641e8 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "micromark-extension-gfm": "^3.0.0", "next": "^13.5.7", "next-auth": "^4.23.2", - "next-plausible": "^3.11.1", + "next-plausible": "^3.12.2", "next-seo": "^6.1.0", "node-s3-url-encode": "^0.0.4", "nodemailer": "^6.9.6", @@ -110,7 +110,7 @@ "yup": "^1.3.2" }, "engines": { - "node": "18.17.0" + "node": "18.20.4" }, "standard": { "plugins": [ diff --git a/worker/Dockerfile b/worker/Dockerfile index 01471151..dd00fdf4 100644 --- a/worker/Dockerfile +++ b/worker/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM node:18.17.0-bullseye +FROM node:18.20.4-bullseye ENV NODE_ENV=development