Skip to content

Commit 047b7fa

Browse files
authored
Specify Rust 1.63 in Dockerfile & CI (#264)
1 parent 1c4981c commit 047b7fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
required-ros-distributions: ${{ matrix.ros_distribution }}
5353

5454
- name: Setup Rust
55-
uses: dtolnay/rust-toolchain@stable
55+
uses: dtolnay/rust-toolchain@1.63.0
5656
with:
5757
components: clippy, rustfmt
5858

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
1111
&& rm -rf /var/lib/apt/lists/*
1212

1313
# Install Rust and the cargo-ament-build plugin
14-
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.62.0 -y
14+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.63.0 -y
1515
ENV PATH=/root/.cargo/bin:$PATH
1616
RUN cargo install cargo-ament-build
1717

@@ -21,4 +21,4 @@ RUN pip install --upgrade pytest
2121
RUN pip install git+https://github.com/colcon/colcon-cargo.git git+https://github.com/colcon/colcon-ros-cargo.git
2222

2323
RUN mkdir -p /workspace && echo "Did you forget to mount the repository into the Docker container?" > /workspace/HELLO.txt
24-
WORKDIR /workspace
24+
WORKDIR /workspace

0 commit comments

Comments
 (0)