Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/node/builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ inputs:
default: build push deploy

runs:
using: node16
using: node24
main: index.js
post: index.js
2 changes: 1 addition & 1 deletion .github/actions/node/package.json
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dotenv": "8.2.0"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/node": "^24.13.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vercel/ncc": "^0.38.1",
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/backend-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: '.nvmrc'

- name: Install dependencies
run: cd .. && npm install -g corepack@latest && corepack enable pnpm && pnpm i --frozen-lockfile
Expand All @@ -48,9 +48,9 @@ jobs:
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: '.nvmrc'

- name: Install dependencies
run: cd .. && npm install -g corepack@latest && corepack enable pnpm && pnpm i --frozen-lockfile
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/frontend-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'

- name: Lint code
run: npm i && npm run lint
working-directory: frontend
4 changes: 2 additions & 2 deletions .github/workflows/server-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
uses: pnpm/action-setup@v4

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: '.nvmrc'
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
24
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ We currently support all our integrations for self-hosting. For each one of them

#### <a name="requirements">Requirements</a>

- [Node](https://nodejs.org/en) v20+
- [Node](https://nodejs.org/en) v24+
- [Docker](https://docs.docker.com/get-docker/) and [docker-compose](https://docs.docker.com/compose/install/)

#### <a name="getting_started">Getting started</a>
Expand Down
16 changes: 8 additions & 8 deletions backend/package.json
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Comment thread
github-license-compliance[bot] marked this conversation as resolved.
Fixed
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@
"@octokit/request": "^5.6.3",
"@octokit/rest": "^22.0.0",
"@opensearch-project/opensearch": "^2.11.0",
"@slack/web-api": "^6.7.2",
"@slack/web-api": "^7.19.0",
"analytics-node": "^6.2.0",
"aws-sdk": "2.814.0",
"axios": "^0.27.2",
"bcrypt": "5.0.0",
"axios": "^1.19.0",
"bcrypt": "6.0.0",
"body-parser": "^1.20.1",
"bufferutil": "^4.0.7",
"bunyan": "^1.8.15",
Expand All @@ -88,7 +88,7 @@
"cli-highlight": "2.1.6",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"config": "^3.3.8",
"config": "^3.3.12",
"cors": "2.8.5",
"cron": "^2.1.0",
"cron-time-generator": "^1.3.0",
Expand All @@ -108,7 +108,7 @@
"html-to-mrkdwn-ts": "^1.1.0",
"html-to-text": "^8.2.1",
"json2csv": "^5.0.7",
"jsonwebtoken": "8.5.1",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"lodash": "4.17.21",
"moment": "2.29.4",
Expand All @@ -130,7 +130,7 @@
"sequelize-cli-typescript": "^3.2.0-c",
"slack-block-builder": "^2.7.2",
"socket.io": "^4.5.4",
"superagent": "^8.0.0",
"superagent": "^10.3.0",
"tsconfig-paths": "^4.2.0",
"utf-8-validate": "^5.0.10",
"uuid": "^9.0.0",
Expand All @@ -147,7 +147,7 @@
"@types/cron": "^2.0.0",
"@types/express": "^4.17.17",
"@types/html-to-text": "^8.1.1",
"@types/node": "^20.8.2",
"@types/node": "^24.13.3",
"@types/sanitize-html": "^2.6.2",
"@types/superagent": "^4.1.15",
"@types/uuid": "^9.0.2",
Expand All @@ -165,7 +165,7 @@
"nodemon": "2.0.4",
"prettier": "^3.3.3",
"rdme": "^7.2.0",
"tsx": "^4.7.1",
"tsx": "^4.20.3",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.15.0"
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine as dependencies
FROM node:24-alpine as dependencies

WORKDIR /usr/crowd/frontend

Expand Down
31 changes: 17 additions & 14 deletions frontend/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 frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@vuelidate/core": "^2.0.1",
"@vuelidate/validators": "^2.0.1",
"@vueuse/core": "^9.13.0",
"axios": "^1.15.0",
"axios": "^1.19.0",
"dayjs": "^1.11.13",
"element-plus": "^2.11.0",
"eslint-import-resolver-alias": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"engines": {
"node": ">=20.0.0"
"node": ">=24.0.0"
},
"scripts": {
"prepare": "husky",
Expand Down
Loading
Loading