Skip to content

Commit 8af8591

Browse files
authored
chore(ci): Use hashbrown 0.15.0 in MSRV check (hyperium#158)
* chore(ci): Use hashbrown 0.15.0 in MSRV check * chore(ci): Use stable rust to resolve dependency
1 parent 753aab2 commit 8af8591

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/CI.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,17 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- uses: actions/checkout@v4
67-
- name: Install Rust (${{ matrix.rust }})
68-
uses: dtolnay/rust-toolchain@master
69-
with:
70-
toolchain: ${{ matrix.rust }}
67+
- uses: dtolnay/rust-toolchain@stable
7168
- name: Pin some dependencies for MSRV
7269
run: |
7370
cargo update
7471
cargo update --package tokio --precise 1.38.1
7572
cargo update --package tokio-util --precise 0.7.11
73+
cargo update --package hashbrown --precise 0.15.0
74+
- name: Install Rust (${{ matrix.rust }})
75+
uses: dtolnay/rust-toolchain@master
76+
with:
77+
toolchain: ${{ matrix.rust }}
7678
- run: cargo check --features full
7779

7880
miri:

0 commit comments

Comments
 (0)