Skip to content

Commit ea11bad

Browse files
committed
chore(ci): update rust toolchain to 1.85
1 parent ab41315 commit ea11bad

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ jobs:
6161
options: --security-opt seccomp=unconfined
6262
steps:
6363
- uses: actions/checkout@v5
64+
- name: Setup Rust 1.85
65+
uses: dtolnay/rust-toolchain@v1
66+
with:
67+
toolchain: 1.85.0
6468
- name: Cache dependencies
6569
uses: Swatinem/rust-cache@v2
6670
- name: Rust unit tests with coverage report
@@ -94,7 +98,11 @@ jobs:
9498
runs-on: ${{ matrix.os }}
9599
steps:
96100
- uses: actions/checkout@v5
97-
101+
102+
- name: Setup Rust 1.85
103+
uses: dtolnay/rust-toolchain@v1
104+
with:
105+
toolchain: 1.85.0
98106
- name: install uv and set the python version
99107
uses: astral-sh/setup-uv@v6
100108
with:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resolver = "2"
2727
version = "0.5.0-dev"
2828
edition = "2021"
2929
license = "Apache-2.0"
30-
rust-version = "1.84"
30+
rust-version = "1.85"
3131
keywords = ["apachehudi", "hudi", "datalake", "arrow"]
3232
readme = "README.md"
3333
description = "The native Rust implementation for Apache Hudi"

demo/infra/runner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
FROM rust:1.84
18+
FROM rust:1.85
1919

2020
RUN apt-get update && apt-get install -y cmake curl ca-certificates
2121

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
# under the License.
1717

1818
[toolchain]
19-
channel = "1.84"
19+
channel = "1.85"
2020
components = ["rustfmt", "clippy"]
2121
profile = "minimal"

0 commit comments

Comments
 (0)