From 3343d683dad3c0b387eaf8caf598447b0c416576 Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Tue, 9 May 2023 09:37:24 +0200 Subject: [PATCH] Explicitly install the rust-src component as we repeatedly had CI failures when this was installed on-demand in the MSRV Clippy job. --- .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 fbd7ff4a73a..392cfc213b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,7 +97,7 @@ jobs: with: toolchain: ${{ matrix.rust }} targets: ${{ matrix.platform.rust-target }} - components: clippy + components: clippy,rust-src - uses: actions/setup-python@v4 with: architecture: ${{ matrix.platform.python-architecture }}