Skip to content

Commit 5074ce4

Browse files
committed
Update rust to 1.92.0
1 parent c43e4d3 commit 5074ce4

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
- uses: actions/checkout@v4
2121

2222
- name: Install Rust
23-
uses: dtolnay/rust-toolchain@1.86
23+
uses: dtolnay/rust-toolchain@master
2424
with:
25+
toolchain: 1.92.0
2526
components: clippy, rustfmt
2627

2728
- name: Run Clippy

.github/workflows/sdk.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ jobs:
2323
- uses: actions/checkout@v4
2424

2525
- name: Install Rust
26-
uses: dtolnay/rust-toolchain@1.86
26+
uses: dtolnay/rust-toolchain@master
2727
with:
28+
toolchain: 1.92.0
2829
components: clippy, rustfmt
2930
# This additional target is needed for wasm32 compatibility check.
3031
targets: wasm32-unknown-unknown, thumbv6m-none-eabi

gateway/dstack-app/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
FROM rust:1.86.0@sha256:300ec56abce8cc9448ddea2172747d048ed902a3090e6b57babb2bf19f754081 AS gateway-builder
5+
FROM rust:1.92.0@sha256:48851a839d6a67370c9dbe0e709bedc138e3e404b161c5233aedcf2b717366e4 AS gateway-builder
66
COPY ./shared /build
77
ARG DSTACK_REV
88
WORKDIR /build

kms/dstack-app/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
FROM rust:1.86.0@sha256:300ec56abce8cc9448ddea2172747d048ed902a3090e6b57babb2bf19f754081 AS kms-builder
5+
FROM rust:1.92.0@sha256:48851a839d6a67370c9dbe0e709bedc138e3e404b161c5233aedcf2b717366e4 AS kms-builder
66
COPY ./shared /build
77
ARG DSTACK_REV
88
ARG DSTACK_SRC_URL=https://github.com/Dstack-TEE/dstack.git

kms/dstack-app/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
build:
99
context: .
1010
dockerfile_inline: |
11-
FROM rust:1.86-alpine@sha256:661d708cc863ce32007cf46807a72062a80d2944a6fae9e0d83742d2e04d5375
11+
FROM rust:1.92.0@sha256:48851a839d6a67370c9dbe0e709bedc138e3e404b161c5233aedcf2b717366e4
1212
WORKDIR /app
1313
RUN apk add --no-cache git build-base openssl-dev protobuf protobuf-dev perl
1414
RUN git clone https://github.com/a16z/helios && \
@@ -57,7 +57,7 @@ services:
5757
build:
5858
context: .
5959
dockerfile_inline: |
60-
FROM rust:1.86.0@sha256:300ec56abce8cc9448ddea2172747d048ed902a3090e6b57babb2bf19f754081
60+
FROM rust:1.92.0@sha256:48851a839d6a67370c9dbe0e709bedc138e3e404b161c5233aedcf2b717366e4
6161
WORKDIR /app
6262
RUN apt-get update && apt-get install -y \
6363
git \

verifier/builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
FROM rust:1.86.0@sha256:300ec56abce8cc9448ddea2172747d048ed902a3090e6b57babb2bf19f754081 AS verifier-builder
5+
FROM rust:1.92.0@sha256:48851a839d6a67370c9dbe0e709bedc138e3e404b161c5233aedcf2b717366e4 AS verifier-builder
66
COPY builder/shared /build/shared
77
ARG DSTACK_REV
88
ARG DSTACK_SRC_URL=https://github.com/Dstack-TEE/dstack.git

0 commit comments

Comments
 (0)