From 62969cebd843aac4e265e8facecaff78cef27545 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 21:08:25 +0000 Subject: [PATCH 1/2] build(deps): Bump anchore/sbom-action from 0.22.2 to 0.23.0 Bumps [anchore/sbom-action](https://github.com/anchore/sbom-action) from 0.22.2 to 0.23.0. - [Release notes](https://github.com/anchore/sbom-action/releases) - [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md) - [Commits](https://github.com/anchore/sbom-action/compare/28d71544de8eaf1b958d335707167c5f783590ad...17ae1740179002c89186b61233e0f892c3118b11) --- updated-dependencies: - dependency-name: anchore/sbom-action dependency-version: 0.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/release-packaging.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-packaging.yaml b/.github/workflows/release-packaging.yaml index d94bbe3..a5a249f 100644 --- a/.github/workflows/release-packaging.yaml +++ b/.github/workflows/release-packaging.yaml @@ -62,7 +62,7 @@ jobs: uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0 - name: Install Syft - uses: anchore/sbom-action/download-syft@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2 + uses: anchore/sbom-action/download-syft@17ae1740179002c89186b61233e0f892c3118b11 # v0.23.0 - name: Set Project Metadata run: | From b9f6e3111ce3c60a95760bd2921f37493d2b7d43 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 04:17:50 +0000 Subject: [PATCH 2/2] fix(ci): [autofix.ci] apply automated fixes --- backpack/cli/src/commands/merge/mod.rs | 6 +----- backpack/cli/src/main.rs | 2 +- backpack/lib/src/utils/mod.rs | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) 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