Skip to content
Draft
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 .docker/prod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG DEBIAN_FRONTEND=noninteractive

FROM debian:stable-slim AS builder

ENV NODE_VERSION=node_20.x
ENV NODE_VERSION=node_26.x
ENV NODE_KEYRING=/usr/share/keyrings/nodesource.gpg

RUN apt-get update && \
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
strategy:
matrix:
node-version:
- 20
- 22
- 24
- 26
steps:
- uses: actions/checkout@v6
- name: Set up node ${{ matrix.node-version }}
Expand All @@ -46,7 +46,7 @@ jobs:
strategy:
matrix:
node-version:
- 22
- 24
steps:
- uses: actions/checkout@v6
- name: Set up node ${{ matrix.node-version }}
Expand All @@ -70,9 +70,9 @@ jobs:
strategy:
matrix:
node-version:
- 20
- 22
- 24
- 26
steps:
- uses: actions/checkout@v6
- name: Set up node ${{ matrix.node-version }}
Expand Down Expand Up @@ -104,9 +104,9 @@ jobs:
strategy:
matrix:
node-version:
- 20
- 22
- 24
- 26
steps:
- uses: actions/checkout@v6
- name: Set up node ${{ matrix.node-version }}
Expand All @@ -125,7 +125,7 @@ jobs:
strategy:
matrix:
node-version:
- 20
- 24
steps:
- uses: actions/checkout@v6
- name: Set up node ${{ matrix.node-version }}
Expand All @@ -149,7 +149,7 @@ jobs:
strategy:
matrix:
node-version:
- 20
- 24
steps:
- uses: actions/checkout@v6
- name: Set up node ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ and the fingerprint is `8AE4 BE42 9B60 A59B 311C 2E73 9823 FAA6 0ED1 E580`.

Prerequisites for GSA:

- node.js >= 20.0
- node.js >= 22.0

To install nodejs the following commands can be used

```bash
export VERSION=20
export VERSION=26
export KEYRING=/usr/share/keyrings/nodesource.gpg

curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor | sudo tee "$KEYRING" >/dev/null
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "git",
"url": "https://github.com/greenbone/gsa/"
},
"author": "Bj\u00f6rn Ricks <bjoern.ricks@greenbone.net>",
"author": "Björn Ricks <bjoern.ricks@greenbone.net>",
"license": "AGPL-3.0+",
"type": "module",
"scripts": {
Expand All @@ -33,7 +33,7 @@
"clear:node_modules": "rm -rf node_modules && npm install"
},
"engines": {
"node": ">=20.0"
"node": ">=22.0"
},
"dependencies": {
"@dnd-kit/accessibility": "^3.1.1",
Expand Down Expand Up @@ -118,4 +118,4 @@
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.17"
}
}
}
Loading