diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 50bebc5b4094..afc9c0586407 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -582,9 +582,9 @@ jobs: # # To reproduce: # 1. Install the version of Rust that is failing. Example: - # rustup install 1.79.0 + # rustup install 1.80.0 # 2. Run the command that failed with that version. Example: - # cargo +1.79.0 check -p datafusion + # cargo +1.80.0 check -p datafusion # # To resolve, either: # 1. Change your code to use older Rust features, diff --git a/datafusion-cli/Dockerfile b/datafusion-cli/Dockerfile index 79c24f6baf3e..faf345660dbe 100644 --- a/datafusion-cli/Dockerfile +++ b/datafusion-cli/Dockerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM rust:1.79-bookworm AS builder +FROM rust:1.80-bookworm AS builder COPY . /usr/src/datafusion COPY ./datafusion /usr/src/datafusion/datafusion