fix: rust build caused by 1.74.0 release (#819)

release-fix-intellij-update-support-version-range
Meng Zhang 2023-11-17 15:21:47 -08:00 committed by GitHub
parent 2bcbf8145c
commit 474833131e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: 1.73.0
- name: Sccache cache
uses: mozilla-actions/sccache-action@v0.0.3

View File

@ -22,7 +22,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*
# setup rust.
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
RUN curl https://sh.rustup.rs -sSf | bash -s -- --default-toolchain 1.73.0 -y
ENV PATH="/root/.cargo/bin:${PATH}"
WORKDIR /root/workspace