From 01f9aa2616f34989213422cf2a9d778c11118efa Mon Sep 17 00:00:00 2001 From: Prazwal Ratti Date: Fri, 10 Apr 2026 17:53:10 +0530 Subject: [PATCH 1/2] upgrade upload-artifact to v7 and fix dependabot config --- .github/dependabot.yml | 6 ------ .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e4b7749..b282b71 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,9 +9,6 @@ updates: open-pull-requests-limit: 5 commit-message: prefix: "deps" - labels: - - "dependencies" - - "rust" reviewers: - "PrazwalR" groups: @@ -38,6 +35,3 @@ updates: open-pull-requests-limit: 3 commit-message: prefix: "ci" - labels: - - "ci" - - "dependencies" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2669aeb..a4d6918 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: run: cargo build --release --verbose - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: target/release/${{ matrix.binary }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7379854..9f49586 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,7 +89,7 @@ jobs: 7z a ../../../${{ matrix.artifact }}.zip ${{ matrix.binary }} - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: | From 60a95c6f1032dcbe4bfc10f5ce2a074afa325da7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 12:25:51 +0000 Subject: [PATCH 2/2] deps: bump dialoguer from 0.11.0 to 0.12.0 Bumps [dialoguer](https://github.com/console-rs/dialoguer) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/console-rs/dialoguer/releases) - [Changelog](https://github.com/console-rs/dialoguer/blob/main/CHANGELOG-OLD.md) - [Commits](https://github.com/console-rs/dialoguer/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: dialoguer dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0cc6e16..6b98e67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,7 +119,7 @@ dependencies = [ "clap", "colored 2.2.0", "comfy-table", - "console", + "console 0.15.11", "criterion", "dialoguer", "futures", @@ -974,6 +974,18 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "console" +version = "0.16.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87" +dependencies = [ + "encode_unicode", + "libc", + "unicode-width", + "windows-sys 0.61.2", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -1182,14 +1194,13 @@ checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" [[package]] name = "dialoguer" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" +checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96" dependencies = [ - "console", + "console 0.16.3", "shell-words", "tempfile", - "thiserror 1.0.69", "zeroize", ] @@ -2078,7 +2089,7 @@ version = "0.17.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" dependencies = [ - "console", + "console 0.15.11", "number_prefix", "portable-atomic", "unicode-width", diff --git a/Cargo.toml b/Cargo.toml index 25b67c0..95b5703 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ semver = "1" base64 = "0.22" which = "6" regex = "1" -dialoguer = "0.11" +dialoguer = "0.12" # Archive tar = "0.4"