Skip to content

Commit

Permalink
build(deps): bump project dependencies (#888)
Browse files Browse the repository at this point in the history
- [x] update npm dependencies;
- [x] update nodejs major version from 20 to 22;
  • Loading branch information
rfprod authored Jan 11, 2025
1 parent c31d531 commit 9771c13
Show file tree
Hide file tree
Showing 11 changed files with 2,120 additions and 1,658 deletions.
2 changes: 1 addition & 1 deletion .docker/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Base NodeJS image for apps.

# Define image.
FROM node:20.11.0-alpine
FROM node:22.12.0-alpine
# Set environment variables.
ENV DEBIAN_FRONTEND=noninteractive
# Create app directory.
Expand Down
2 changes: 1 addition & 1 deletion .docker/runner-ci-slim.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CI/CD runner image without docker.

# Define image.
FROM node:20.11.0-slim
FROM node:22.12.0-slim
# Set environment variables.
ENV DEBIAN_FRONTEND=noninteractive
# Create app directory.
Expand Down
2 changes: 1 addition & 1 deletion .docker/runner-ci.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CI/CD runner image with docker.

# Define image.
FROM node:20.11.0
FROM node:22.12.0
# Set environment variables.
ENV DEBIAN_FRONTEND=noninteractive
# Create app directory.
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ inputs:
node-version:
description: NodeJS version
required: true
default: 20.12.x
default: 22.12.x

runs:
using: 'composite'
Expand Down
2 changes: 1 addition & 1 deletion .ncurc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"reject": ["marked", "@types/marked", "eslint", "prettier", "typescript"],
"reject": ["marked", "@types/marked", "ngx-markdown", "eslint", "prettier", "typescript", "firebase", "firebase-admin", "cache-manager"],
"timeout": 120000
}
6 changes: 3 additions & 3 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"description": "Dependencies for docker containers running api application. Do not install dependencies in this directory. This file is only for containers.",
"dependencies": {
"@apollo/server": "4.11.2",
"@apollo/server": "4.11.3",
"@grpc/grpc-js": "1.12.5",
"@grpc/proto-loader": "0.7.13",
"@nestjs/apollo": "12.2.2",
Expand All @@ -19,7 +19,7 @@
"@nestjs/platform-express": "10.4.15",
"@nestjs/platform-ws": "10.4.15",
"@nestjs/serve-static": "4.0.2",
"@nestjs/swagger": "8.1.0",
"@nestjs/swagger": "8.1.1",
"@nestjs/throttler": "6.3.0",
"@nestjs/websockets": "10.4.15",
"axios": "1.7.9",
Expand All @@ -35,7 +35,7 @@
"graphql": "16.10.0",
"graphql-subscriptions": "3.0.0",
"graphql-tag": "2.12.6",
"graphql-tools": "9.0.8",
"graphql-tools": "9.0.11",
"graphql-upload": "17.0.0",
"grpc-web": "1.5.0",
"protobufjs": "7.4.0",
Expand Down
Loading

0 comments on commit 9771c13

Please sign in to comment.