From ce4e5496de35064c4cf4fb59c279d3834fc556cb Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 10 Jan 2024 00:12:35 +0000
Subject: [PATCH] Bump lycheeverse/lychee-action (#2875)
Bumps
[lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action)
from 2ac9f030ccdea0033e2510a23a67da2a2da98492 to
fdea7032675810093199f485fe075f057cc37b3e.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
---------
Signed-off-by: dependabot[bot]
Signed-off-by: Oliver Tale-Yazdi
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oliver Tale-Yazdi
Co-authored-by: PG Herveou
---
.config/lychee.toml | 4 ++--
.github/workflows/check-links.yml | 2 +-
.../tests/people/people-rococo/src/tests/reap_identity.rs | 4 ++--
.../tests/people/people-westend/src/tests/reap_identity.rs | 4 ++--
docs/sdk/src/meta_contributing.rs | 2 +-
docs/sdk/src/reference_docs/frame_benchmarking_weight.rs | 2 +-
polkadot/node/core/pvf/common/src/worker/mod.rs | 2 +-
substrate/client/rpc-api/src/state/mod.rs | 4 ++--
substrate/frame/staking/src/migrations.rs | 2 +-
substrate/frame/state-trie-migration/src/lib.rs | 2 +-
10 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/.config/lychee.toml b/.config/lychee.toml
index 72c1e66a4d..70869465d6 100644
--- a/.config/lychee.toml
+++ b/.config/lychee.toml
@@ -12,10 +12,10 @@ exclude_all_private = true
# Treat these codes as success condition:
accept = [
# Ok
- 200,
+ "200",
# Rate limited - GitHub likes to throw this.
- 429,
+ "429",
]
exclude_path = ["./target"]
diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml
index 0932d38c9a..14941efce2 100644
--- a/.github/workflows/check-links.yml
+++ b/.github/workflows/check-links.yml
@@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.0 (22. Sep 2023)
- name: Lychee link checker
- uses: lycheeverse/lychee-action@2ac9f030ccdea0033e2510a23a67da2a2da98492 # for v1.8.0 (15. May 2023)
+ uses: lycheeverse/lychee-action@fdea7032675810093199f485fe075f057cc37b3e # for v1.9.0 (5. Jan 2024)
with:
args: >-
--config .config/lychee.toml
diff --git a/cumulus/parachains/integration-tests/emulated/tests/people/people-rococo/src/tests/reap_identity.rs b/cumulus/parachains/integration-tests/emulated/tests/people/people-rococo/src/tests/reap_identity.rs
index 81bd7620e4..2902f359df 100644
--- a/cumulus/parachains/integration-tests/emulated/tests/people/people-rococo/src/tests/reap_identity.rs
+++ b/cumulus/parachains/integration-tests/emulated/tests/people/people-rococo/src/tests/reap_identity.rs
@@ -95,7 +95,7 @@ impl Identity {
relay: IdentityInfo {
display: make_data(b"xcm-test", full),
legal: make_data(b"The Xcm Test, Esq.", full),
- web: make_data(b"https://xcm-test.io", full),
+ web: make_data(b"https://visitme/", full),
riot: make_data(b"xcm-riot", full),
email: make_data(b"xcm-test@gmail.com", full),
pgp_fingerprint: Some(pgp_fingerprint),
@@ -106,7 +106,7 @@ impl Identity {
para: IdentityInfoParachain {
display: make_data(b"xcm-test", full),
legal: make_data(b"The Xcm Test, Esq.", full),
- web: make_data(b"https://xcm-test.io", full),
+ web: make_data(b"https://visitme/", full),
matrix: make_data(b"xcm-matrix@server", full),
email: make_data(b"xcm-test@gmail.com", full),
pgp_fingerprint: Some(pgp_fingerprint),
diff --git a/cumulus/parachains/integration-tests/emulated/tests/people/people-westend/src/tests/reap_identity.rs b/cumulus/parachains/integration-tests/emulated/tests/people/people-westend/src/tests/reap_identity.rs
index 6de2562b27..31c3444f1a 100644
--- a/cumulus/parachains/integration-tests/emulated/tests/people/people-westend/src/tests/reap_identity.rs
+++ b/cumulus/parachains/integration-tests/emulated/tests/people/people-westend/src/tests/reap_identity.rs
@@ -95,7 +95,7 @@ impl Identity {
relay: IdentityInfo {
display: make_data(b"xcm-test", full),
legal: make_data(b"The Xcm Test, Esq.", full),
- web: make_data(b"https://xcm-test.io", full),
+ web: make_data(b"https://visitme/", full),
riot: make_data(b"xcm-riot", full),
email: make_data(b"xcm-test@gmail.com", full),
pgp_fingerprint: Some(pgp_fingerprint),
@@ -106,7 +106,7 @@ impl Identity {
para: IdentityInfoParachain {
display: make_data(b"xcm-test", full),
legal: make_data(b"The Xcm Test, Esq.", full),
- web: make_data(b"https://xcm-test.io", full),
+ web: make_data(b"https://visitme/", full),
matrix: make_data(b"xcm-matrix@server", full),
email: make_data(b"xcm-test@gmail.com", full),
pgp_fingerprint: Some(pgp_fingerprint),
diff --git a/docs/sdk/src/meta_contributing.rs b/docs/sdk/src/meta_contributing.rs
index 0d3ecea465..b4f9d504c6 100644
--- a/docs/sdk/src/meta_contributing.rs
+++ b/docs/sdk/src/meta_contributing.rs
@@ -70,7 +70,7 @@
//! > that they already pose, rather than repeating yourself**.
//!
//! For more details about documenting guidelines, see:
-//!
+//!
//!
//! #### Example: Explaining `#[pallet::call]`
//!
diff --git a/docs/sdk/src/reference_docs/frame_benchmarking_weight.rs b/docs/sdk/src/reference_docs/frame_benchmarking_weight.rs
index 7ebad37eca..db77547a4b 100644
--- a/docs/sdk/src/reference_docs/frame_benchmarking_weight.rs
+++ b/docs/sdk/src/reference_docs/frame_benchmarking_weight.rs
@@ -20,4 +20,4 @@
//! - how to write benchmarks, how you must think of worst case.
//! - how to run benchmarks.
//!
-//! -
+//! -
diff --git a/polkadot/node/core/pvf/common/src/worker/mod.rs b/polkadot/node/core/pvf/common/src/worker/mod.rs
index 5e7deb5ca7..9dcd535d53 100644
--- a/polkadot/node/core/pvf/common/src/worker/mod.rs
+++ b/polkadot/node/core/pvf/common/src/worker/mod.rs
@@ -319,7 +319,7 @@ pub fn run_worker(
}
// TODO: We can enable the seccomp networking blacklist on aarch64 as well, but we need a CI
- // job to catch regressions. See .
+ // job to catch regressions. See issue ci_cd/issues/609.
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
if security_status.can_enable_seccomp {
if let Err(err) = security::seccomp::enable_for_worker(&worker_info) {
diff --git a/substrate/client/rpc-api/src/state/mod.rs b/substrate/client/rpc-api/src/state/mod.rs
index dbc2a50545..4acc64def2 100644
--- a/substrate/client/rpc-api/src/state/mod.rs
+++ b/substrate/client/rpc-api/src/state/mod.rs
@@ -270,8 +270,8 @@ pub trait StateApi {
/// [querying substrate storage via rpc][3].
///
/// [1]: https://docs.substrate.io/main-docs/fundamentals/state-transitions-and-storage/
- /// [2]: https://www.shawntabrizi.com/substrate/transparent-keys-in-substrate/
- /// [3]: https://www.shawntabrizi.com/substrate/querying-substrate-storage-via-rpc/
+ /// [2]: https://www.shawntabrizi.com/blog/substrate/transparent-keys-in-substrate/
+ /// [3]: https://www.shawntabrizi.com/blog/substrate/querying-substrate-storage-via-rpc/
///
/// ### Maximum payload size
///
diff --git a/substrate/frame/staking/src/migrations.rs b/substrate/frame/staking/src/migrations.rs
index 311e9667ce..92af4fdba5 100644
--- a/substrate/frame/staking/src/migrations.rs
+++ b/substrate/frame/staking/src/migrations.rs
@@ -15,7 +15,7 @@
// See the License for the specific language governing permissions and
//! Storage migrations for the Staking pallet. The changelog for this is maintained at
-//! [CHANGELOG.md](https://github.com/paritytech/substrate/blob/master/frame/staking/CHANGELOG.md).
+//! [CHANGELOG.md](https://github.com/paritytech/polkadot-sdk/blob/master/substrate/frame/staking/CHANGELOG.md).
use super::*;
use frame_election_provider_support::SortedListProvider;
diff --git a/substrate/frame/state-trie-migration/src/lib.rs b/substrate/frame/state-trie-migration/src/lib.rs
index 8652e8e956..ea28d71260 100644
--- a/substrate/frame/state-trie-migration/src/lib.rs
+++ b/substrate/frame/state-trie-migration/src/lib.rs
@@ -476,7 +476,7 @@ pub mod pallet {
/// - [`frame_support::storage::StorageDoubleMap`]: 96 byte
///
/// For more info see
- ///
+ ///
#[pallet::constant]
type MaxKeyLen: Get;