updating toolchains
Some checks failed
test and deploy / Package Library (push) Blocked by required conditions
test and deploy / Package Container (push) Blocked by required conditions
test and deploy / Build WASM (push) Has been cancelled
test and deploy / Build Native (push) Has been cancelled

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

View File

@ -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

View File

@ -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

View File

@ -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