updating toolchains

This commit is contained in:
Andy Pack 2024-07-28 15:49:38 +01:00
parent 7e780fb3c9
commit e4dbbf5c14
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7
3 changed files with 4 additions and 4 deletions
.gitea/workflows
.github/workflows
Dockerfile

@ -32,7 +32,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 20
node-version: 22
- name: Install Node Modules
run: npm ci

@ -28,7 +28,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 20
node-version: 22
- name: Install Node Modules
run: npm ci

@ -1,4 +1,4 @@
FROM rust:1.71 AS rust-build
FROM rust:1.78 AS rust-build
RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
@ -10,7 +10,7 @@ RUN wasm-pack build --release
WORKDIR /draught
RUN cargo doc --no-deps --document-private-items
FROM node:20-alpine AS js-build
FROM node:22-alpine AS js-build
COPY . /draught
WORKDIR /draught/draught_web