Skip to content

Commit 3b9c79f

Browse files
committed
Pin-back home for MSRV
Unfortunately, `home` bumped their MSRV to rustc 1.88 with their 0.5.12 patch release. Here, we pin it back to allow our CI to succeed under MSRV 1.85.
1 parent 9d71d3a commit 3b9c79f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
- name: Check formatting on Rust ${{ matrix.toolchain }}
4242
if: matrix.check-fmt
4343
run: rustup component add rustfmt && cargo fmt --all -- --check
44+
- name: Pin packages to allow for MSRV
45+
if: matrix.msrv
46+
run: |
47+
cargo update -p home --precise "0.5.11" --verbose # home v0.5.12 requires rustc 1.88 or newer
4448
- name: Set RUSTFLAGS to deny warnings
4549
if: "matrix.toolchain == 'stable'"
4650
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)