From 72d9e0b9ff187457975cb277261febd66f4434b4 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Fri, 12 Jun 2026 10:47:51 +0000 Subject: [PATCH 1/2] chore(deps): pin dependencies --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- Cargo.toml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 608de47..6255684 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,10 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable with: components: clippy, rustfmt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad06d7e..0c955ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,13 +15,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 with: fetch-depth: 0 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable - name: Run release-plz - uses: MarcoIeni/release-plz-action@v0.5 + uses: MarcoIeni/release-plz-action@e8792575c7f2366cf6ff3ccc33ead9ace5b691c7 # v0.5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/Cargo.toml b/Cargo.toml index 02be41b..0f4a68c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,9 +20,9 @@ default = ["rayon"] rayon = ["dep:rayon"] [dev-dependencies] -clap = { version = "4.4.5", features = ["derive"] } -criterion = "0.8" -proptest = "1.1.0" +clap = { version = "=4.6.1", features = ["derive"] } +criterion = "=0.8.2" +proptest = "=1.11.0" [[example]] name = "registry" From 9358a1d5063ae1902d9e74bb4b3565e3be462575 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 12 Jun 2026 12:53:23 +0200 Subject: [PATCH 2/2] chore(deps): Pin `dtolnay/rust-toolchain` action with explicit `toolchain: stable` --- .github/workflows/ci.yml | 3 ++- .github/workflows/release.yml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6255684..bfa58c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,9 @@ jobs: - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 - name: Install stable toolchain - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master with: + toolchain: stable components: clippy, rustfmt - name: cargo clippy diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c955ec..a88b295 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,9 @@ jobs: with: fetch-depth: 0 - name: Install Rust toolchain - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable + uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master + with: + toolchain: stable - name: Run release-plz uses: MarcoIeni/release-plz-action@e8792575c7f2366cf6ff3ccc33ead9ace5b691c7 # v0.5 env: