Skip to content

Commit 095deb1

Browse files
committed
fix(ci): updated toolchain
1 parent bfb5a2c commit 095deb1

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-deployer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup Rust toolchain
3333
uses: dtolnay/rust-toolchain@master
3434
with:
35-
toolchain: nightly-2025-08-14
35+
toolchain: nightly-2026-02-20
3636
targets: wasm32-unknown-unknown
3737
- uses: Swatinem/rust-cache@v2
3838
with:

filen-relay/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
# cd .. && docker build -f filen-relay/Dockerfile . -t filen-relay && cd filen-relay
33

44
# see https://dioxuslabs.com/learn/0.7/tutorial/deploy#building-a-dockerfile
5-
# using nightly-2025-08-14 toolchain as per rust-toolchain.toml
5+
# using nightly-2026-02-20 toolchain as per rust-toolchain.toml
66

77
FROM rust:1 AS chef
8-
RUN cargo +nightly-2025-08-14 install cargo-chef
8+
RUN cargo +nightly-2026-02-20 install cargo-chef
99
WORKDIR /app
1010

1111
FROM chef AS planner
1212
COPY . .
13-
RUN cargo +nightly-2025-08-14 chef prepare --recipe-path recipe.json
13+
RUN cargo +nightly-2026-02-20 chef prepare --recipe-path recipe.json
1414

1515
FROM chef AS builder
1616
COPY --from=planner /app/recipe.json recipe.json
17-
RUN cargo +nightly-2025-08-14 chef cook --release --recipe-path recipe.json
17+
RUN cargo +nightly-2026-02-20 chef cook --release --recipe-path recipe.json
1818
RUN rustup target add wasm32-unknown-unknown
1919
# install dioxus-cli
2020
RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash

0 commit comments

Comments
 (0)