From 298f6cb1e881806db82e40071169dfba91f8f95c Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Mon, 13 Nov 2023 10:15:34 +0100 Subject: [PATCH] ci: Pin jobserver after cc Since now only cc depends on jobserver, it should be pinned after we pin cc --- .github/workflows/cont_integration.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index fe643210e..26cc07d3f 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -45,10 +45,10 @@ jobs: cargo update -p time --precise "0.3.13" cargo update -p byteorder --precise "1.4.3" cargo update -p webpki --precise "0.22.2" - cargo update -p jobserver --precise "0.1.26" cargo update -p os_str_bytes --precise 6.5.1 cargo update -p sct --precise 0.7.0 cargo update -p cc --precise "1.0.81" + cargo update -p jobserver --precise "0.1.26" - name: Build run: cargo build ${{ matrix.features }} - name: Test diff --git a/README.md b/README.md index 80c86f282..2968fc653 100644 --- a/README.md +++ b/README.md @@ -95,14 +95,14 @@ cargo update -p time --precise "0.3.13" cargo update -p byteorder --precise "1.4.3" # webpki 0.22.4 requires `ring:0.17.2` which has MSRV 1.61.0+ cargo update -p webpki --precise "0.22.2" -# jobserver 0.1.27 has MSRV 1.66.0+ -cargo update -p jobserver --precise "0.1.26" # os_str_bytes 6.6.0 has MSRV 1.61.0+ cargo update -p os_str_bytes --precise 6.5.1 # sct 0.7.1 has MSRV 1.61.0+ cargo update -p sct --precise 0.7.0 # cc 1.0.82 has MSRV 1.61.0+ cargo update -p cc --precise "1.0.81" +# jobserver 0.1.27 has MSRV 1.66.0+ +cargo update -p jobserver --precise "0.1.26" ``` ## License