From cbd2b20be391037207302bcde000a77661ed47b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 22:06:18 +0000 Subject: [PATCH] build(deps): bump cargo-bins/cargo-binstall in the actions group Bumps the actions group with 1 update: [cargo-bins/cargo-binstall](https://github.com/cargo-bins/cargo-binstall). Updates `cargo-bins/cargo-binstall` from 1.19.1 to 1.20.0 - [Release notes](https://github.com/cargo-bins/cargo-binstall/releases) - [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/release-plz.toml) - [Commits](https://github.com/cargo-bins/cargo-binstall/compare/aaa84a43aec4955a42c5ffc65d258961e39f276e...30b5ca8b54e1dcffd9548bc87ede1531310fdc67) --- updated-dependencies: - dependency-name: cargo-bins/cargo-binstall dependency-version: 1.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 2 +- .github/workflows/binary-builds.yml | 2 +- .github/workflows/build-docs.yml | 4 ++-- .github/workflows/bump-n-release.yml | 4 ++-- .github/workflows/node-js-packaging.yml | 2 +- .github/workflows/run-dev-tests.yml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 3660bb8..775abcb 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -127,7 +127,7 @@ jobs: uses: actions/download-artifact@v8 - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 env: GITHUB_TOKEN: ${{ github.token }} - name: Install hyperfine diff --git a/.github/workflows/binary-builds.yml b/.github/workflows/binary-builds.yml index 32bc460..5312574 100644 --- a/.github/workflows/binary-builds.yml +++ b/.github/workflows/binary-builds.yml @@ -109,7 +109,7 @@ jobs: - name: Install cargo-binstall if: matrix.cross - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 env: GITHUB_TOKEN: ${{ github.token }} - name: Install cross (cargo cross compiler) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 5d298dd..05dbff6 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -63,7 +63,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 env: GITHUB_TOKEN: ${{ github.token }} - name: Install nur @@ -99,7 +99,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 env: GITHUB_TOKEN: ${{ github.token }} - name: Install nur diff --git a/.github/workflows/bump-n-release.yml b/.github/workflows/bump-n-release.yml index db7192f..45473f8 100644 --- a/.github/workflows/bump-n-release.yml +++ b/.github/workflows/bump-n-release.yml @@ -63,7 +63,7 @@ jobs: node-version: 24.x - run: yarn install if: inputs.package == 'cpp-linter-js' - - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + - uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 - run: cargo binstall -y git-cliff env: GITHUB_TOKEN: ${{ github.token }} @@ -119,7 +119,7 @@ jobs: fetch-depth: 0 fetch-tags: true persist-credentials: false - - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + - uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 - run: cargo binstall -y git-cliff env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/node-js-packaging.yml b/.github/workflows/node-js-packaging.yml index 989b2ea..5e3ea5a 100644 --- a/.github/workflows/node-js-packaging.yml +++ b/.github/workflows/node-js-packaging.yml @@ -111,7 +111,7 @@ jobs: use-cache: true # zizmor: ignore[cache-poisoning] - name: Install cargo-binstall if: endsWith(matrix.settings.build, ' -x') || endsWith(matrix.settings.build, '--use-cross') - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 env: GITHUB_TOKEN: ${{ github.token }} - name: Install ${{endsWith(matrix.settings.build, ' -x') && 'cargo-zigbuild' || 'cargo-cross'}} diff --git a/.github/workflows/run-dev-tests.yml b/.github/workflows/run-dev-tests.yml index d53218a..59fb710 100644 --- a/.github/workflows/run-dev-tests.yml +++ b/.github/workflows/run-dev-tests.yml @@ -62,7 +62,7 @@ jobs: # if: runner.os == 'Windows' # run: vcpkg install openssl - - uses: cargo-bins/cargo-binstall@aaa84a43aec4955a42c5ffc65d258961e39f276e # v1.19.1 + - uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0 env: GITHUB_TOKEN: ${{ github.token }} - name: Install third-party binaries