From ace3428d9e89f9f083ed9c3184d06a06c93a74be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 22:06:36 +0000 Subject: [PATCH] build(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [cargo-bins/cargo-binstall](https://github.com/cargo-bins/cargo-binstall) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `actions/cache` from 5.0.4 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5.0.4...v5.0.5) Updates `cargo-bins/cargo-binstall` from 1.18.0 to 1.18.1 - [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/f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a...dc19f1e48450eefe5a29b8da6c6b00a87d730b37) Updates `astral-sh/setup-uv` from 8.0.0 to 8.1.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/cec208311dfd045dd5311c1add060b2062131d57...08807647e7069bb48b6ef5acd8ec9567f424441b) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: cargo-bins/cargo-binstall dependency-version: 1.18.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 6 +++--- .github/workflows/binary-builds.yml | 2 +- .github/workflows/build-docs.yml | 14 +++++++------- .github/workflows/bump-n-release.yml | 4 ++-- .github/workflows/node-js-packaging.yml | 4 ++-- .github/workflows/pre-commit-hooks.yml | 2 +- .github/workflows/run-dev-tests.yml | 6 +++--- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 90f5263..1c7c20d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,7 @@ jobs: ref: ${{ matrix.commit }} persist-credentials: false - name: Cache base ref build - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 id: cache with: key: bin-cache-${{ hashFiles('cpp-linter/src/**', 'Cargo.toml', 'Cargo.lock', 'cpp-linter/Cargo.toml') }} @@ -116,7 +116,7 @@ jobs: uses: actions/download-artifact@v8 - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 env: GITHUB_TOKEN: ${{ github.token }} - name: Install hyperfine @@ -126,7 +126,7 @@ jobs: - name: Install nushell uses: hustcer/setup-nu@92c296ba1ba2ba04cc948ab64ddefe192dc13f0c # v3.23 - name: Install uv - uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 - name: Run benchmark script working-directory: benchmark diff --git a/.github/workflows/binary-builds.yml b/.github/workflows/binary-builds.yml index cd00db1..5aa171c 100644 --- a/.github/workflows/binary-builds.yml +++ b/.github/workflows/binary-builds.yml @@ -119,7 +119,7 @@ jobs: - name: Install cargo-binstall if: matrix.cross - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 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 11e4341..e12cd03 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -38,7 +38,7 @@ jobs: persist-credentials: false - run: rustup update --no-self-update - name: Cache .cargo locked resources - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }} @@ -52,14 +52,14 @@ jobs: with: persist-credentials: false - name: Cache .cargo locked resources - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: ~/.cargo key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }} - name: Install uv - uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 env: GITHUB_TOKEN: ${{ github.token }} - name: Install nur @@ -83,14 +83,14 @@ jobs: persist-credentials: false - run: rustup update --no-self-update - name: Cache .cargo locked resources - uses: actions/cache/restore@v5.0.4 + uses: actions/cache/restore@v5.0.5 with: path: ~/.cargo key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }} - name: Install uv - uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 - name: Install cargo-binstall - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 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 463b661..8213e44 100644 --- a/.github/workflows/bump-n-release.yml +++ b/.github/workflows/bump-n-release.yml @@ -58,7 +58,7 @@ jobs: node-version: 24.x - run: yarn install if: inputs.package == 'cpp-linter-js' - - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + - uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 - run: cargo binstall -y git-cliff env: GITHUB_TOKEN: ${{ github.token }} @@ -108,7 +108,7 @@ jobs: fetch-depth: 0 fetch-tags: true persist-credentials: false - - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + - uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 - 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 17a9657..add22eb 100644 --- a/.github/workflows/node-js-packaging.yml +++ b/.github/workflows/node-js-packaging.yml @@ -89,7 +89,7 @@ jobs: rustup update stable --no-self-update rustup target add ${{ matrix.settings.target }} - name: Cache cargo - uses: actions/cache@v5.0.4 # zizmor: ignore[cache-poisoning] + uses: actions/cache@v5.0.5 # zizmor: ignore[cache-poisoning] with: path: | ~/.cargo/registry/index/ @@ -106,7 +106,7 @@ jobs: use-cache: true # zizmor: ignore[cache-poisoning] - name: Install cargo-binstall if: contains(matrix.settings.build, ' -x ') || contains(matrix.settings.build, '--use-cross ') - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 env: GITHUB_TOKEN: ${{ github.token }} - name: Install ${{contains(matrix.settings.build, ' -x ') && 'cargo-zigbuild' || 'cargo-cross'}} diff --git a/.github/workflows/pre-commit-hooks.yml b/.github/workflows/pre-commit-hooks.yml index 0da3167..17ff8ea 100644 --- a/.github/workflows/pre-commit-hooks.yml +++ b/.github/workflows/pre-commit-hooks.yml @@ -27,7 +27,7 @@ jobs: persist-credentials: false - run: rustup update - name: Cache .cargo locked resources - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }} diff --git a/.github/workflows/run-dev-tests.yml b/.github/workflows/run-dev-tests.yml index 7a558aa..59ed068 100644 --- a/.github/workflows/run-dev-tests.yml +++ b/.github/workflows/run-dev-tests.yml @@ -55,7 +55,7 @@ jobs: # if: runner.os == 'Windows' # run: vcpkg install openssl - - uses: cargo-bins/cargo-binstall@f8ce4d55b131f4a1e373b8747ca6b6a54133ae5a # v1.18.0 + - uses: cargo-bins/cargo-binstall@dc19f1e48450eefe5a29b8da6c6b00a87d730b37 # v1.18.1 env: GITHUB_TOKEN: ${{ github.token }} - name: Install third-party binaries @@ -69,7 +69,7 @@ jobs: python-version: 3.x - name: Install uv - uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 + uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 with: enable-cache: true cache-dependency-glob: "uv.lock" @@ -83,7 +83,7 @@ jobs: run: choco install ninja - name: Cache .cargo locked resources - uses: actions/cache@v5.0.4 + uses: actions/cache@v5.0.5 with: path: ~/.cargo key: ${{ runner.os }}-tests-cargo-${{ hashFiles('Cargo.lock') }}