Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Pin serde_json in CI to maintain MSRV #10

Merged
merged 1 commit into from
Jul 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
run: cargo update -p tokio --precise "1.14.1" --verbose
- name: Pin serde for MSRV
if: matrix.msrv
run: cargo update -p serde --precise "1.0.156" --verbose
run: |
cargo update -p serde_json --precise "1.0.99" --verbose
cargo update -p serde --precise "1.0.156" --verbose
- name: Pin log for MSRV
if: matrix.msrv
run: cargo update -p log --precise "0.4.18" --verbose
Expand Down