From c5642549d072decf89c0cf206a86bddb8b486e2a Mon Sep 17 00:00:00 2001 From: David Hurta Date: Tue, 29 Jun 2021 14:10:35 +0200 Subject: [PATCH 1/2] Testing submodule dependabot --- .github/dependabot.yml | 9 ++++----- .gitmodules | 3 +++ graph-data.rs/cincinnati | 1 + 3 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 .gitmodules create mode 160000 graph-data.rs/cincinnati diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6460051dc..809259436 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,7 @@ updates: directory: "/graph-data.rs" schedule: interval: "daily" - reviewers: - - "wking" - - "vrutkovs" - - "PratikMahajan" - - "LalatenduMohanty" + - package-ecosystem: "gitsubmodule" + directory: "/graph-data.rs" + schedule: + interval: "monthly" diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..ccf2dd554 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "graph-data.rs/cincinnati"] + path = graph-data.rs/cincinnati + url = https://github.com/openshift/cincinnati diff --git a/graph-data.rs/cincinnati b/graph-data.rs/cincinnati new file mode 160000 index 000000000..7028cf5ae --- /dev/null +++ b/graph-data.rs/cincinnati @@ -0,0 +1 @@ +Subproject commit 7028cf5aee1d08af2f8cb8fc4f9dbec80d5554b9 From b404ed02b562459dbf5d7db8ea462b9fd656fd36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Jun 2021 12:11:55 +0000 Subject: [PATCH 2/2] build(deps): bump actix-service in /graph-data.rs Bumps [actix-service](https://github.com/actix/actix-net) from 2.0.0-beta.5 to 2.0.0. - [Release notes](https://github.com/actix/actix-net/releases) - [Commits](https://github.com/actix/actix-net/compare/server-v2.0.0-beta.5...rt-v2.0.0) --- updated-dependencies: - dependency-name: actix-service dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- graph-data.rs/Cargo.lock | 11 +++++++++-- graph-data.rs/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/graph-data.rs/Cargo.lock b/graph-data.rs/Cargo.lock index 2043b5230..619d1239c 100644 --- a/graph-data.rs/Cargo.lock +++ b/graph-data.rs/Cargo.lock @@ -115,11 +115,12 @@ dependencies = [ [[package]] name = "actix-service" -version = "2.0.0-beta.5" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf82340ad9f4e4caf43737fd3bbc999778a268015cdc54675f60af6240bd2b05" +checksum = "77f5f9d66a8730d0fae62c26f3424f5751e5518086628a40b7ab6fca4a705034" dependencies = [ "futures-core", + "paste", "pin-project-lite", ] @@ -1711,6 +1712,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "paste" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58" + [[package]] name = "pem" version = "0.8.3" diff --git a/graph-data.rs/Cargo.toml b/graph-data.rs/Cargo.toml index ae19ffe14..d783632da 100644 --- a/graph-data.rs/Cargo.toml +++ b/graph-data.rs/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] cincinnati = { git = "https://github.com/openshift/cincinnati", rev = "1201519bbb90c30d0ba5da967bdaea546c7db349"} actix-http = "=3.0.0-beta.5" -actix-service = "=2.0.0-beta.5" +actix-service = "=2.0.0" tokio = { version = "1.7", features = [ "fs", "rt-multi-thread" ] } serde = "^1.0.126" serde_yaml = "^0.8.17"