From 0028f935624d4e10d84b886b5ddee49cfbcb4751 Mon Sep 17 00:00:00 2001 From: "bootc-bot[bot]" <225049296+bootc-bot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 00:33:48 +0000 Subject: [PATCH] fix(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .github/workflows/auto-review.yml | 8 +++--- .github/workflows/autovendor.yml | 2 +- .github/workflows/ci.yml | 12 ++++---- .github/workflows/docs.yml | 4 +-- .github/workflows/labeler.yml | 4 +-- .github/workflows/release.yml | 2 +- .github/workflows/scheduled-release.yml | 2 +- Cargo.lock | 8 ++---- crates/ostree-ext/.github/workflows/rust.yml | 30 ++++++++++---------- crates/ostree-ext/Cargo.toml | 2 +- crates/system-reinstall-bootc/Cargo.toml | 2 +- 11 files changed, 37 insertions(+), 39 deletions(-) diff --git a/.github/workflows/auto-review.yml b/.github/workflows/auto-review.yml index cb370a065..cb552cfea 100644 --- a/.github/workflows/auto-review.yml +++ b/.github/workflows/auto-review.yml @@ -14,12 +14,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: - python-version: '3.11' + python-version: '3.13' - name: Install dependencies run: | @@ -28,7 +28,7 @@ jobs: - name: Generate Bootc Actions Token id: bootc_token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ secrets.APP_ID }} private-key: ${{ secrets.APP_PRIVATE_KEY }} diff --git a/.github/workflows/autovendor.yml b/.github/workflows/autovendor.yml index 13eb231ea..59a436609 100644 --- a/.github/workflows/autovendor.yml +++ b/.github/workflows/autovendor.yml @@ -12,7 +12,7 @@ jobs: vendor: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable - name: Install vendor tool run: cargo install cargo-vendor-filterer diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74df59abd..385b7ecaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest container: quay.io/coreos-assembler/fcos-buildroot:testing-devel steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install deps run: ./ci/installdeps.sh - name: Mark git checkout as safe @@ -54,7 +54,7 @@ jobs: sudo apt install -y crun/testing podman/testing skopeo/testing - name: Installdeps run: sudo apt update && sudo apt install just - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Build and run container integration tests run: sudo just run-container-integration run-container-external-tests container-continuous: @@ -69,13 +69,13 @@ jobs: sudo apt install -y crun/testing podman/testing skopeo/testing - name: Installdeps run: sudo apt update && sudo apt install just - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Build with continuous repo enabled run: sudo just build --build-arg=continuous_repo=1 cargo-deny: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: EmbarkStudios/cargo-deny-action@v2 with: log-level: warn @@ -93,7 +93,7 @@ jobs: sudo apt update sudo apt install -y crun/testing podman/testing skopeo/testing - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Free up disk space on runner run: sudo ./ci/clean-gha-runner.sh - name: Enable fsverity for / @@ -147,7 +147,7 @@ jobs: env: MDBOOK_VERSION: 0.4.37 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install mdBook run: | tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name') diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index dd7f546fb..8fc73e9bd 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,7 +26,7 @@ jobs: env: MDBOOK_VERSION: 0.4.37 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install mdBook run: | tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name') @@ -58,7 +58,7 @@ jobs: - name: Build with mdBook run: cd docs && mdbook-mermaid install && mdbook build - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: ./docs/book/html diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index cc4a8781e..0f6624fb6 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -9,5 +9,5 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/labeler@v5 + - uses: actions/checkout@v5 + - uses: actions/labeler@v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a16ce105c..79363589f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: private-key: ${{ secrets.APP_PRIVATE_KEY }} - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ steps.app-token.outputs.token }} diff --git a/.github/workflows/scheduled-release.yml b/.github/workflows/scheduled-release.yml index 15025ce55..ea95fcb84 100644 --- a/.github/workflows/scheduled-release.yml +++ b/.github/workflows/scheduled-release.yml @@ -29,7 +29,7 @@ jobs: private-key: ${{ secrets.APP_PRIVATE_KEY }} - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ steps.app-token.outputs.token }} diff --git a/Cargo.lock b/Cargo.lock index e0d37ae66..3b1d85098 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -642,7 +642,6 @@ dependencies = [ "encode_unicode", "libc", "once_cell", - "unicode-width", "windows-sys 0.59.0", ] @@ -876,14 +875,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 0.15.11", + "console 0.16.0", "shell-words", "tempfile", - "thiserror 1.0.69", "zeroize", ] diff --git a/crates/ostree-ext/.github/workflows/rust.yml b/crates/ostree-ext/.github/workflows/rust.yml index 91c971ea0..34c9df4fc 100644 --- a/crates/ostree-ext/.github/workflows/rust.yml +++ b/crates/ostree-ext/.github/workflows/rust.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest container: quay.io/coreos-assembler/fcos-buildroot:testing-devel steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Code lints run: ./ci/lints.sh - name: Install deps @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest container: quay.io/coreos-assembler/fcos-buildroot:testing-devel steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Install deps run: ./ci/installdeps.sh - name: Cache Dependencies @@ -67,7 +67,7 @@ jobs: container: quay.io/coreos-assembler/fcos-buildroot:testing-devel steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Install deps run: ./ci/installdeps.sh - name: Detect crate MSRV @@ -91,8 +91,8 @@ jobs: cargo-deny: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: actions/checkout@v5 + - uses: EmbarkStudios/cargo-deny-action@v2 with: log-level: warn command: check bans sources licenses @@ -103,9 +103,9 @@ jobs: container: quay.io/fedora/fedora-coreos:testing-devel steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Download ostree-ext-cli - uses: actions/download-artifact@v4.1.8 + uses: actions/download-artifact@v5.0.0 with: name: ostree-ext-cli - name: Install @@ -119,9 +119,9 @@ jobs: container: quay.io/fedora/fedora-coreos:testing-devel steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Download ostree-ext-cli - uses: actions/download-artifact@v4.1.8 + uses: actions/download-artifact@v5.0.0 with: name: ostree-ext-cli - name: Install @@ -133,13 +133,13 @@ jobs: needs: build runs-on: ubuntu-latest container: - image: quay.io/fedora/fedora-bootc:41 + image: quay.io/fedora/fedora-bootc:44 options: "--privileged --pid=host -v /var/tmp:/var/tmp -v /run/dbus:/run/dbus -v /run/systemd:/run/systemd -v /:/run/host" steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download - uses: actions/download-artifact@v4.1.8 + uses: actions/download-artifact@v5.0.0 with: name: ostree-ext-cli - name: Install @@ -152,14 +152,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Checkout coreos-layering-examples - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: repository: coreos/coreos-layering-examples path: coreos-layering-examples - name: Download - uses: actions/download-artifact@v4.1.8 + uses: actions/download-artifact@v5.0.0 with: name: ostree-ext-cli - name: Integration tests diff --git a/crates/ostree-ext/Cargo.toml b/crates/ostree-ext/Cargo.toml index 63bcfc97d..c321d6890 100644 --- a/crates/ostree-ext/Cargo.toml +++ b/crates/ostree-ext/Cargo.toml @@ -57,7 +57,7 @@ tokio-stream = { features = ["sync"], version = "0.1.8" } zstd = { version = "0.13.1", features = ["pkg-config"] } [dev-dependencies] -quickcheck = "1" +quickcheck = "=1.0.3" # https://github.com/rust-lang/cargo/issues/2911 # https://github.com/rust-lang/rfcs/pull/1956 ostree-ext = { path = ".", features = ["internal-testing-api"] } diff --git a/crates/system-reinstall-bootc/Cargo.toml b/crates/system-reinstall-bootc/Cargo.toml index 1df41f71f..bb4ee7483 100644 --- a/crates/system-reinstall-bootc/Cargo.toml +++ b/crates/system-reinstall-bootc/Cargo.toml @@ -33,7 +33,7 @@ uzers = { workspace = true } # Crate-specific dependencies crossterm = "0.29.0" -dialoguer = "0.11.0" +dialoguer = "0.12.0" openssh-keys = "0.6.4" serde_yaml = "0.9.22" which = "8.0.0"