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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # 4.3.1
with:
fetch-depth: 0

- name: Install nodejs
uses: actions/setup-node@v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # 4.4.0
with:
node-version: "22.x"
node-version: "24.x"

- name: Install node dependencies
run: npm ci --ignore-scripts
Expand All @@ -27,7 +27,7 @@ jobs:
npm run unit-test

- name: Analyse code quality
uses: sonarsource/sonarqube-scan-action@1a6d90ebcb0e6a6b1d87e37ba693fe453195ae25 # v5.3.1
uses: sonarsource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 # 7.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand All @@ -45,7 +45,7 @@ jobs:
-Dsonar.issue.ignore.multicriteria.e2.resourceKey=**/docker/.env
- name: Dependency Review
if: github.event_name == 'pull_request'
uses: actions/dependency-review-action@v4
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # 5.0.0
with:
fail-on-severity: moderate
comment-summary-in-pr: always
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.21.0
v24.18.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This repository contains the serverless backend services for the **FWIS replacem

## Prerequisites

- **Node.js 22** or higher
- **Node.js 24** or higher
- Appropriate API keys and environment variables (see below)

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion docker/.env
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ LAMBDA_IGNORE_ARCHITECTURE=1
# debugging when cloning the remote repository into a container volume.
DEBUG_HOST_ADDRESS=192.168.0.5
FWS_DB_HOST=fwsdb
NODEJS_VERSION=22
NODEJS_VERSION=24
PGADMIN_DEFAULT_EMAIL=ubuntu@localhost.localdomain

# Database associated values including well known secrets for local development
Expand Down
Loading
Loading