diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ff11fbc4f194..b11310d95a80e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -493,7 +493,7 @@ jobs: - run: ./.github/downstream.d/${{ matrix.DOWNSTREAM }}.sh run docs-linkcheck: - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && contains(github.event.title, 'linkcheck')) runs-on: ubuntu-latest name: "linkcheck" timeout-minutes: 15 diff --git a/docs/conf.py b/docs/conf.py index c8bab9afb8b57..07c428f1ebef8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -205,6 +205,8 @@ r"https://e-trust.gosuslugi.ru", # Expired cert r"https://www.cosic.esat.kuleuven.be", + # Incomplete cert chain + r"https://www.oscca.gov.cn", ] autosectionlabel_prefix_document = True diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index 74f83449a2386..7fda5f3fd71f5 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -64,9 +64,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bumpalo" -version = "3.10.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" +checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" [[package]] name = "cfg-if"