Skip to content

Commit 2748fe0

Browse files
ci: move toolchain action back and add --all-features to the problematic cargo update
1 parent cdce48b commit 2748fe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,11 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v6
59+
- uses: dtolnay/rust-toolchain@1.64
5960
- name: Remove the example crates to exclude effects to dependencies from them
6061
run: rm -r ./examples/* && cargo new --lib --edition 2021 examples/dummy
6162
# we could probably replace all these with the cargo MSRV resolver ...
62-
- run: cargo update -p tokio --precise 1.38.1
63+
- run: cargo update -p tokio --precise 1.38.1 --all-features
6364
- run: cargo update -p tokio-util --precise 0.7.11
6465
- run: cargo update -p once_cell --precise 1.20.3
6566
- run: cargo update -p tracing --precise 0.1.41
@@ -68,7 +69,6 @@ jobs:
6869
- run: cargo update -p async-compression --precise 0.4.23
6970
- run: cargo update -p flate2 --precise 1.0.35
7071
- run: cargo update -p itoa --precise 1.0.15
71-
- uses: dtolnay/rust-toolchain@1.64
7272
- run: cargo check -p tower-http --all-features
7373

7474
style:

0 commit comments

Comments
 (0)