Skip to content

Commit 551b859

Browse files
committed
Update MSRV in CI to 1.85
In ldk-node's update, it bumped its MSRV to 1.85 so we need to do the same here.
1 parent 20c1899 commit 551b859

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
platform: [
1010
ubuntu-latest,
1111
macos-latest,
12-
]
13-
toolchain:
12+
]
13+
toolchain:
1414
[ stable,
1515
beta,
16-
1.75.0, # MSRV
16+
1.85.0, # MSRV, same as ldk-node
1717
]
1818
include:
1919
- toolchain: stable
2020
check-fmt: true
21-
- toolchain: 1.75.0
21+
- toolchain: 1.85.0
2222
msrv: true
2323
runs-on: ${{ matrix.platform }}
2424
steps:
@@ -33,8 +33,8 @@ jobs:
3333
run: rustup component add rustfmt && cargo fmt --all -- --check
3434
- name: Pin packages to allow for MSRV
3535
if: matrix.msrv
36-
run: |
37-
cargo update -p home --precise "0.5.9" --verbose # home v0.5.11 requires rustc 1.81 or newer
36+
run: | # None needed yet
37+
echo "No packages need pinning for MSRV ${{ matrix.toolchain }}"
3838
- name: Build on Rust ${{ matrix.toolchain }}
3939
run: cargo build --verbose --color always
4040
- name: Test on Rust ${{ matrix.toolchain }}

0 commit comments

Comments
 (0)