Skip to content

Commit 3642cfa

Browse files
authored
Merge pull request #3125 from AtCoder-NoviSteps/#3017
build: Bump Node.js from v22.x to v24.x (#3017)
2 parents 643e740 + b13ae15 commit 3642cfa

File tree

7 files changed

+388
-7
lines changed

7 files changed

+388
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
strategy:
3131
matrix:
32-
node-version: [22, 24]
32+
node-version: [24]
3333

3434
steps:
3535
- name: Check out Git repository
@@ -91,7 +91,7 @@ jobs:
9191
- name: Setup Node.js
9292
uses: actions/setup-node@v6
9393
with:
94-
node-version: 22
94+
node-version: 24
9595
check-latest: true
9696
cache: 'pnpm'
9797
cache-dependency-path: pnpm-lock.yaml
@@ -143,7 +143,7 @@ jobs:
143143
- name: Setup Node.js
144144
uses: actions/setup-node@v6
145145
with:
146-
node-version: 22
146+
node-version: 24
147147
check-latest: true
148148
cache: 'pnpm'
149149
cache-dependency-path: pnpm-lock.yaml

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- 開発言語
2525
- [TypeScript](https://www.typescriptlang.org/)
2626
- JavaScriptのランタイム
27-
- [Node.js](https://nodejs.org): v22.x
27+
- [Node.js](https://nodejs.org): v24.x
2828
- 汎用フレームワーク
2929
- [Svelte](https://svelte.dev/): v5.x。Runes mode で運用中
3030
- [SvelteKit](https://svelte.dev/): v2.x

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See:
22
# https://github.com/devcontainers/images/tree/main/src/javascript-node
3-
ARG NODE_VERSION=22
3+
ARG NODE_VERSION=24
44
FROM mcr.microsoft.com/devcontainers/javascript-node:${NODE_VERSION}
55

66
WORKDIR /usr/src/app

0 commit comments

Comments
 (0)