diff --git a/.github/workflows/test-with-coverage.yaml b/.github/workflows/test-with-coverage.yaml index 64bf7f7..8d637db 100644 --- a/.github/workflows/test-with-coverage.yaml +++ b/.github/workflows/test-with-coverage.yaml @@ -87,7 +87,7 @@ jobs: # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Cargo.lock') }} - name: Install grcov - uses: taiki-e/install-action@f176c07a0a40cbfdd08ee9aa8bf1655701d11e69 # v2.67.25 + uses: taiki-e/install-action@305bebabd4457bed9b82541755f034994382465b # v2.68.10 with: tool: grcov,cargo-llvm-cov diff --git a/backpack/cli/src/commands/merge/mod.rs b/backpack/cli/src/commands/merge/mod.rs index fb99719..abf2c66 100644 --- a/backpack/cli/src/commands/merge/mod.rs +++ b/backpack/cli/src/commands/merge/mod.rs @@ -5,11 +5,7 @@ use rootcause::prelude::*; use rootcause_backtrace::BacktraceCollector; use tracing::instrument; -use github_bot_lib::{ - cli::Args, - utils::get_repo, - github, -}; +use github_bot_lib::{cli::Args, github, utils::get_repo}; #[instrument(level = "debug", target = "errors::rootcause", name = "run")] pub fn run(target: Option) -> anyhow::Result<()> { diff --git a/backpack/cli/src/main.rs b/backpack/cli/src/main.rs index 9aa2c4c..219d1ed 100644 --- a/backpack/cli/src/main.rs +++ b/backpack/cli/src/main.rs @@ -157,7 +157,7 @@ async fn main() -> anyhow::Result<()> { .unwrap_or_default(), }, ) - .await; + .await; merge::run(target_repo)?; diff --git a/backpack/lib/src/utils/mod.rs b/backpack/lib/src/utils/mod.rs index a5e05f1..682cd57 100644 --- a/backpack/lib/src/utils/mod.rs +++ b/backpack/lib/src/utils/mod.rs @@ -1,5 +1,5 @@ +use anyhow::{Context, Result, bail}; use dialoguer::Input; -use anyhow::{bail, Result, Context}; use std::process::Command; /// Check if current directory is inside a git repo