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

Commit b31f1c0

Browse files
authored
Merge pull request #10 from tnull/2023-07-pin-serde-json
Pin `serde_json` in CI to maintain MSRV
2 parents 58fbce0 + bc1638f commit b31f1c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
run: cargo update -p tokio --precise "1.14.1" --verbose
3131
- name: Pin serde for MSRV
3232
if: matrix.msrv
33-
run: cargo update -p serde --precise "1.0.156" --verbose
33+
run: |
34+
cargo update -p serde_json --precise "1.0.99" --verbose
35+
cargo update -p serde --precise "1.0.156" --verbose
3436
- name: Pin log for MSRV
3537
if: matrix.msrv
3638
run: cargo update -p log --precise "0.4.18" --verbose

0 commit comments

Comments
 (0)