From afc5d0ef82c20bc6e08c6f42126532217751403b Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 30 Nov 2020 11:11:20 +0100 Subject: [PATCH] .github/workflow: Don't require nightly for doc link check (#1866) The `broken_intra_doc_links` lint stabilized with Rust `v1.48`, thus the special usage of `nightly` is not needed anymore in the pipeline step. --- .github/workflows/ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3616484..06d46050 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,11 +101,6 @@ jobs: - uses: actions/checkout@v2 - - name: Install nightly Rust - # TODO: intra-doc links are available on nightly only - # see https://doc.rust-lang.org/nightly/rustdoc/lints.html#intra_doc_link_resolution_failure - run: rustup default nightly-2020-09-17 - - name: Check rustdoc links run: RUSTDOCFLAGS="--deny broken_intra_doc_links" cargo doc --verbose --workspace --no-deps --document-private-items