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/workflows/create-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 16.x
node-version: 22.x
cache: 'npm'
- run: npm install
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 16.x
node-version: 22.x
cache: "npm"
- run: npm install
- name: Set up Docker Buildx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
strategy:
matrix:
node-version:
- 18
- 20
- 22
- 24
2 changes: 1 addition & 1 deletion .github/workflows/rc-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 16.x
node-version: 22.x
cache: npm
- run: npm ci
- run: npm run build --if-present
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v22
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:22-alpine
WORKDIR /opt/safe-settings
ENV NODE_ENV production
## Set the Labels
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
]
},
"engines": {
"node": ">= 16.0.0"
"node": ">= 22.0.0"
Copy link

Copilot AI Mar 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description/checklist says all Node.js version references were identified/updated, but there are still hard-coded Node 16 runtime/version references elsewhere (e.g. .github/actions/publish-docker/action.yml uses node-version: 16.x, and template.yml uses Runtime: nodejs16.x; serverless.yml still pins nodejs20.x). Either update those references as part of this PR or adjust the PR scope/description so it’s accurate.

Copilot uses AI. Check for mistakes.
},
"jest": {
"testEnvironment": "node",
Expand Down