Skip to content

Commit 32ffa8f

Browse files
committed
chore: move everything to node 24
1 parent 0817bc2 commit 32ffa8f

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | b
2626
&& export NVM_DIR="$HOME/.nvm" \
2727
&& [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" \
2828
&& [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" \
29-
&& nvm install 18 \
29+
&& nvm install 24 \
3030
&& npm install -g yarn
3131

3232
RUN pip install pre-commit

.github/workflows/build-tauri.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jobs:
4343

4444
steps:
4545
- uses: actions/checkout@v6
46-
- name: Use Node.js 18.x
46+
- name: Use Node.js 24.x
4747
uses: actions/setup-node@v6
4848
with:
49-
node-version: 18.x
49+
node-version: 24.x
5050
cache: "yarn"
5151
- name: install Rust stable
5252
uses: dtolnay/rust-toolchain@stable
@@ -123,10 +123,10 @@ jobs:
123123
with:
124124
name: tauri-linux
125125
path: artifacts/tauri-linux
126-
- name: Use Node.js 18.x
126+
- name: Use Node.js 24.x
127127
uses: actions/setup-node@v6
128128
with:
129-
node-version: 18.x
129+
node-version: 24.x
130130
cache: "yarn"
131131
- name: Generate updater file
132132
run: node app/tauri/release-prep/release-prep.js

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup node
3131
uses: actions/setup-node@v6
3232
with:
33-
node-version: 18.x
33+
node-version: 24.x
3434
cache: "yarn"
3535
- name: Cache
3636
uses: actions/cache@v5

.github/workflows/website-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v6
10-
- name: Use Node.js 18.x
10+
- name: Use Node.js 24.x
1111
uses: actions/setup-node@v6
1212
with:
13-
node-version: 18.x
13+
node-version: 24.x
1414
cache: "yarn"
1515
- name: Install NPM Packages
1616
run: cd website && yarn install --immutable

.nvmrc

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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ versions, feel free to open a small pr to correct it.
3838

3939
### Requirements
4040

41-
- Node.js v18
41+
- Node.js v24
4242
- Rust (only required for the Tauri version)
4343
- Yarn
4444

0 commit comments

Comments
 (0)