Skip to content

Commit

Permalink
chore(ci): Use hashbrown 0.15.0 in MSRV check (#158)
Browse files Browse the repository at this point in the history
* chore(ci): Use hashbrown 0.15.0 in MSRV check

* chore(ci): Use stable rust to resolve dependency
  • Loading branch information
tottoto authored Nov 16, 2024
1 parent 753aab2 commit 8af8591
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (${{ matrix.rust }})
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- uses: dtolnay/rust-toolchain@stable
- name: Pin some dependencies for MSRV
run: |
cargo update
cargo update --package tokio --precise 1.38.1
cargo update --package tokio-util --precise 0.7.11
cargo update --package hashbrown --precise 0.15.0
- name: Install Rust (${{ matrix.rust }})
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo check --features full

miri:
Expand Down

0 comments on commit 8af8591

Please sign in to comment.