From 1fc7bf79e6e72b8c00cd0dddb34dffbef2a6fb97 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 01:53:31 +0000 Subject: [PATCH] chore(deps): update all patchlevel dependencies --- .github/workflows/ci.yml | 6 +++--- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c14603bf..6430c240 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,13 +95,13 @@ jobs: profile: minimal toolchain: stable override: true - - uses: taiki-e/install-action@6943331e01261cdff7420bbc2508cb463574e404 # v2.27.2 + - uses: taiki-e/install-action@b7add58e53e52e624966da65007ce24524f3dcf3 # v2.27.9 with: tool: cargo-tarpaulin - name: Generate unit-tests coverage run: make coverage-unit-tests - name: Upload unit-tests coverage to Codecov - uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1 + uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4.0.2 env: CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} with: @@ -112,7 +112,7 @@ jobs: - name: Generate integration-tests coverage run: make coverage-integration-tests - name: Upload integration-tests coverage to Codecov - uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1 + uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4.0.2 env: CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} with: diff --git a/Cargo.lock b/Cargo.lock index 73991c16..d022b68d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3798,7 +3798,7 @@ dependencies = [ "thiserror", "tokio", "tower", - "tower-http 0.5.1", + "tower-http 0.5.2", "tracing", "tracing-futures", "tracing-opentelemetry", @@ -5260,9 +5260,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0da193277a4e2c33e59e09b5861580c33dd0a637c3883d0fa74ba40c0374af2e" +checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ "bitflags 2.4.2", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 14a36383..725366b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ semver = { version = "1.0.22", features = ["serde"] } mockall_double = "0.3" axum = { version = "0.7.4", features = ["macros"] } axum-server = { version = "0.6", features = ["tls-rustls"] } -tower-http = { version = "0.5.1", features = ["trace"] } +tower-http = { version = "0.5.2", features = ["trace"] } [dev-dependencies] mockall = "0.12"