Skip to content

Commit

Permalink
chore(deps): update dependency node to v20.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Mar 27, 2024
1 parent 08d4aef commit ddbb63d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
ci:
container: node:20.11.1
container: node:20.12.0
runs-on: ubuntu-latest
timeout-minutes: 17
services:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11.1
20.12.0
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkgs/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"zod": "3.22.4"
},
"devDependencies": {
"@types/node": "20.11.19",
"@types/node": "20.11.30",
"@types/passport-github2": "1.2.9",
"@types/passport-http-bearer": "1.0.41",
"@types/passport-jwt": "3.0.13",
Expand Down
6 changes: 3 additions & 3 deletions prod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ------------------
# package.json cache
# ------------------
FROM node:20.11.1-bullseye-slim as deps
FROM node:20.12.0-bullseye-slim as deps

RUN apt update && apt-get install -y bash jq

Expand All @@ -27,7 +27,7 @@ RUN ./clean_package_json.sh './**/*/package.json'
# ------------------
# New tmp image
# ------------------
FROM node:20.11.1-bullseye-slim AS tmp
FROM node:20.12.0-bullseye-slim AS tmp

# Setup the app WORKDIR
WORKDIR /app/tmp
Expand Down Expand Up @@ -73,7 +73,7 @@ RUN true \
# ---- Web ----
# Resulting new, minimal image
# This image must have the minimum amount of layers
FROM node:20.11.1-bullseye-slim as web
FROM node:20.12.0-bullseye-slim as web

ENV PORT=8080
ENV NODE_ENV=production
Expand Down

0 comments on commit ddbb63d

Please sign in to comment.