From 98cafff093474d6129ca4fc43da141afe510c4d7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 26 Jul 2022 21:22:34 -0700 Subject: [PATCH] =?UTF-8?q?Avoid=20cargo=201.43=E2=80=931.45=20in=20GitHub?= =?UTF-8?q?=20Actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These versions are incompatible with some recent GitHub change error: failed to get `serde` as a dependency of package `semver v1.0.12 (/home/runner/work/semver/semver)` Caused by: failed to load source for dependency `serde` Caused by: Unable to update registry `https://github.com/rust-lang/crates.io-index` Caused by: failed to fetch `https://github.com/rust-lang/crates.io-index` Caused by: error reading from the zlib stream; class=Zlib (5) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45b21a46..0d724776 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.52.0, 1.46.0, 1.45.0, 1.40.0, 1.39.0, 1.36.0, 1.33.0, 1.32.0, 1.31.0] + rust: [nightly, beta, stable, 1.52.0, 1.46.0, 1.40.0, 1.39.0, 1.36.0, 1.33.0, 1.32.0, 1.31.0] steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@master