From 8f1198bc0c289e1e7191395e62ab558920797b87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:36:49 +0000 Subject: [PATCH 1/2] Update actix-identity requirement from 0.5 to 0.6 Updates the requirements on [actix-identity](https://github.com/actix/actix-extras) to permit the latest version. - [Release notes](https://github.com/actix/actix-extras/releases) - [Commits](https://github.com/actix/actix-extras/compare/cors-0.5.0...cors-v0.6.0) --- updated-dependencies: - dependency-name: actix-identity dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- juniper_actix/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index 17afe798d..30bda9ee1 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -47,7 +47,7 @@ derive_more = { version = "0.99.8", default-features = false } [dev-dependencies] actix-cors = "0.6" -actix-identity = "0.5" +actix-identity = "0.6" actix-rt = "2.0" actix-test = "0.1" async-stream = "0.3" From 5e09c23f982a17b2e8e66360fb1a4d426280ec85 Mon Sep 17 00:00:00 2001 From: tyranron Date: Wed, 20 Sep 2023 15:43:35 +0300 Subject: [PATCH 2/2] Correct CI check --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aae40e14c..2fc6dc26b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -184,6 +184,9 @@ jobs: - run: cargo +nightly update -Z minimal-versions - run: make test.cargo crate=${{ matrix.crate }} + if: ${{ !contains(fromJSON('["juniper_actix"]'), matrix.crate) }} + - run: cargo check -p ${{ matrix.crate }} --all-features + if: ${{ contains(fromJSON('["juniper_actix"]'), matrix.crate) }} package: if: ${{ startsWith(github.ref, 'refs/tags/juniper') }}