Skip to content

Commit 43248cf

Browse files
committed
[CI] Upgrade to rust 1.89.0
1 parent 33c0f2c commit 43248cf

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/cargo-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest]
21-
toolchain: [1.88.0]
21+
toolchain: [1.89.0]
2222
include:
2323
- os: windows-latest
24-
toolchain: 1.88.0-x86_64-pc-windows-gnu
24+
toolchain: 1.89.0-x86_64-pc-windows-gnu
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/rust.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest]
9-
toolchain: [1.88.0]
9+
toolchain: [1.89.0]
1010
include:
1111
- os: windows-latest
12-
toolchain: 1.88.0-x86_64-pc-windows-gnu
12+
toolchain: 1.89.0-x86_64-pc-windows-gnu
1313
runs-on: ${{ matrix.os }}
1414
steps:
1515
- uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
- uses: actions/checkout@v4
6060
- uses: dtolnay/rust-toolchain@master
6161
with:
62-
toolchain: 1.88.0
62+
toolchain: 1.89.0
6363
components: rustfmt
6464
- run: cargo fmt -- --check
6565

@@ -68,10 +68,10 @@ jobs:
6868
fail-fast: false
6969
matrix:
7070
os: [ubuntu-latest, macos-latest]
71-
toolchain: [1.88.0, 1.75.0]
71+
toolchain: [1.89.0, 1.75.0]
7272
include:
7373
- os: windows-latest
74-
toolchain: 1.88.0-x86_64-pc-windows-gnu
74+
toolchain: 1.89.0-x86_64-pc-windows-gnu
7575
- os: windows-latest
7676
toolchain: 1.75.0-x86_64-pc-windows-gnu
7777
runs-on: ${{ matrix.os }}

CI/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def install(self):
334334
return ["{} -m pip install --force-reinstall {}".format(python, filename)]
335335

336336

337-
def install_rust(version="1.88.0", target="x86_64-unknown-linux-gnu"):
337+
def install_rust(version="1.89.0", target="x86_64-unknown-linux-gnu"):
338338
rustup_opts = "-y --default-toolchain none"
339339
cargo_dir = "$HOME/.cargo/bin/"
340340
rustup = cargo_dir + "rustup"

0 commit comments

Comments
 (0)