Skip to content

Commit 52e3559

Browse files
authored
Merge pull request #821 from mountebank-testing/update_node
Update node
2 parents b21be1e + 2de3032 commit 52e3559

File tree

11 files changed

+4740
-12310
lines changed

11 files changed

+4740
-12310
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ version: 2.1
33
executors:
44
node-maintenance:
55
docker:
6-
- image: cimg/node:18.19.0
6+
- image: cimg/node:20.20.1
77
environment:
88
- MB_SLOW_TEST_TIMEOUT: 10000
99
node-active:
1010
docker:
11-
- image: cimg/node:18.19.0
11+
- image: cimg/node:24.14.0
1212
environment:
1313
- MB_SLOW_TEST_TIMEOUT: 10000
1414
node-current:
1515
docker:
16-
- image: cimg/node:21.6.1
16+
- image: cimg/node:25.8.0
1717
environment:
1818
- MB_SLOW_TEST_TIMEOUT: 10000
1919

@@ -97,10 +97,10 @@ jobs:
9797
- checkout
9898
- run: choco install wget -y
9999
- run:
100-
name: Install and use Node.js 18.11.0 with pre-installed nvm
100+
name: Install and use Node.js 20.20.1 with pre-installed nvm
101101
command: |
102-
nvm install 18.11.0
103-
nvm use 18.11.0
102+
nvm install 20.20.1
103+
nvm use 20.20.1
104104
- run:
105105
name: Verify versions
106106
command: |
@@ -132,8 +132,8 @@ jobs:
132132
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
133133
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
134134
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
135-
echo nvm install 18 >> $BASH_ENV
136-
echo nvm alias default 18 >> $BASH_ENV
135+
echo nvm install 20.20.1 >> $BASH_ENV
136+
echo nvm alias default 20.20.1 >> $BASH_ENV
137137
- run:
138138
name: Install Dependencies
139139
command: npm ci

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
33
{
4-
"name": "Mountebank - Node.js 18",
5-
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bookworm"
4+
"name": "Mountebank - Node.js 24",
5+
"image": "mcr.microsoft.com/devcontainers/javascript-node:24"
66

77
// Features to add to the dev container. More info: https://containers.dev/features.
88
// "features": {},

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
save-exact:true
1+
save-exact=true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM node:18-alpine
3+
FROM node:24-alpine
44

55
WORKDIR /app
66

0 commit comments

Comments
 (0)