Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Draupnir and repo to require node 20 #38

Merged
merged 2 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: yarn

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: yarn

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion docs/bot/setup_debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apt update && apt install -y git curl sudo
```
install node 18 from the node source repo, the full instructions can be found at https://github.com/nodesource/distributions
MTRNord marked this conversation as resolved.
Show resolved Hide resolved
```shell
curl -fsSL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh
curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh
bash nodesource_setup.sh
apt update && apt install nodejs -y
```
Expand Down
2 changes: 1 addition & 1 deletion docs/bot/setup_selfbuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This guide is meant to be read in conjunction with [Draupnir parameters and opti
:::

These instructions are to build and run draupnir without using [Docker](./setup_docker.md).
You need to have installed `yarn` 1.x and Node 18.
You need to have installed `yarn` 1.x and Node 20.

```bash
git clone https://github.com/the-draupnir-project/Draupnir.git
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
]
},
"engines": {
"node": ">=18.0"
"node": ">=20.0"
}
}
Loading