Skip to content

Commit d3ec975

Browse files
committed
Upgrade Node.js version to the latest LTS
1 parent 92eb7d5 commit d3ec975

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ executors:
1212
default: false
1313
version:
1414
type: string
15-
default: '22.19.0' # Specify LTS major and minor for development
15+
default: '22.22.0' # Specify LTS major and minor for development
1616
docker:
1717
- image: cimg/node:<< parameters.version >><<# parameters.browser >>-browsers<</ parameters.browser >>
1818
working_directory: ~/marp-cli
@@ -155,7 +155,7 @@ jobs:
155155
executor:
156156
name: node
157157
browser: true
158-
version: '20.19'
158+
version: '20.20'
159159
steps:
160160
- prepare:
161161
browser: true
@@ -177,7 +177,7 @@ jobs:
177177
executor:
178178
name: node
179179
browser: true
180-
version: '24.8'
180+
version: '24.14'
181181
steps:
182182
- prepare:
183183
browser: true

.github/workflows/test-win.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
matrix:
1818
node-version:
1919
- '^18.20.8'
20-
- '^20.19.5'
21-
- '22.19.0'
22-
- '^24.8.0'
20+
- '^20.20.0'
21+
- '22.22.0'
22+
- '^24.14.0'
2323

2424
steps:
2525
# - name: Output concurrency group

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.19.0
1+
22.22.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#################### Build Marp CLI ####################
2-
FROM --platform=$BUILDPLATFORM node:22.19.0-bookworm-slim AS build
2+
FROM --platform=$BUILDPLATFORM node:22.22.0-bookworm-slim AS build
33
WORKDIR /home/node/marp-cli
44
COPY . .
55
RUN npm ci && npm run build
66

77
#################### Create Marp CLI image ####################
8-
FROM node:22.19.0-bookworm-slim
8+
FROM node:22.22.0-bookworm-slim
99

1010
# Set up user for Marp CLI
1111
RUN groupadd -r marp && useradd -r -g marp marp && mkdir -p /home/marp/app /home/marp/.cli && chown -R marp:marp /home/marp

0 commit comments

Comments
 (0)