From 0512639657eabb5d4999ecf059e0df1d8a034fc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 13:18:57 +0000 Subject: [PATCH] build(deps): bump the updates group across 1 directory with 5 updates Bumps the updates group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [holochain/actions/.github/workflows/prepare-release.yml](https://github.com/holochain/actions) | `1.6.0` | `1.16.0` | | [holochain/actions/.github/workflows/publish-release.yml](https://github.com/holochain/actions) | `1.6.0` | `1.16.0` | | [actions/checkout](https://github.com/actions/checkout) | `5` | `7` | | [AdityaGarg8/remove-unwanted-software](https://github.com/adityagarg8/remove-unwanted-software) | `2` | `5` | | [cachix/cachix-action](https://github.com/cachix/cachix-action) | `16` | `17` | Updates `holochain/actions/.github/workflows/prepare-release.yml` from 1.6.0 to 1.16.0 - [Release notes](https://github.com/holochain/actions/releases) - [Commits](https://github.com/holochain/actions/compare/v1.6.0...v1.16.0) Updates `holochain/actions/.github/workflows/publish-release.yml` from 1.6.0 to 1.16.0 - [Release notes](https://github.com/holochain/actions/releases) - [Commits](https://github.com/holochain/actions/compare/v1.6.0...v1.16.0) Updates `actions/checkout` from 5 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v7) Updates `AdityaGarg8/remove-unwanted-software` from 2 to 5 - [Release notes](https://github.com/adityagarg8/remove-unwanted-software/releases) - [Commits](https://github.com/adityagarg8/remove-unwanted-software/compare/v2...v5) Updates `cachix/cachix-action` from 16 to 17 - [Release notes](https://github.com/cachix/cachix-action/releases) - [Changelog](https://github.com/cachix/cachix-action/blob/master/RELEASE.md) - [Commits](https://github.com/cachix/cachix-action/compare/v16...v17) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: updates - dependency-name: AdityaGarg8/remove-unwanted-software dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: updates - dependency-name: cachix/cachix-action dependency-version: '17' dependency-type: direct:production update-type: version-update:semver-major dependency-group: updates - dependency-name: holochain/actions/.github/workflows/prepare-release.yml dependency-version: 1.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: updates - dependency-name: holochain/actions/.github/workflows/publish-release.yml dependency-version: 1.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: updates ... Signed-off-by: dependabot[bot] --- .github/workflows/prepare-release.yml | 2 +- .github/workflows/publish-release.yml | 2 +- .github/workflows/test.yaml | 18 +++++++++--------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 176860838..5ca3d43e6 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -16,7 +16,7 @@ on: jobs: call: - uses: holochain/actions/.github/workflows/prepare-release.yml@v1.6.0 + uses: holochain/actions/.github/workflows/prepare-release.yml@v1.16.0 with: cliff_config: "https://raw.githubusercontent.com/holochain/release-integration/refs/heads/main/pre-1.0-cliff.toml" force_version: ${{ inputs.force_version }} diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index a661a5aa5..47a837c33 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -8,7 +8,7 @@ on: jobs: call: - uses: holochain/actions/.github/workflows/publish-release.yml@v1.6.0 + uses: holochain/actions/.github/workflows/publish-release.yml@v1.16.0 secrets: HRA2_GITHUB_TOKEN: ${{ secrets.HRA2_GITHUB_TOKEN }} HRA2_CRATES_IO_TOKEN: ${{ secrets.HRA2_CRATES_IO_TOKEN }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 93fbc8ad7..5a83ae939 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,7 +12,7 @@ jobs: name: cargo_test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: Swatinem/rust-cache@v2 - run: cargo test --no-fail-fast @@ -20,25 +20,25 @@ jobs: name: rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - run: cargo fmt --all -- --check clippy: name: clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - uses: Swatinem/rust-cache@v2 - run: cargo clippy -- -D warnings nix_build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Maximize build space if: runner.os == 'Linux' - uses: AdityaGarg8/remove-unwanted-software@v2 + uses: AdityaGarg8/remove-unwanted-software@v5 with: remove-dotnet: "true" remove-android: "true" @@ -50,7 +50,7 @@ jobs: with: install_url: https://releases.nixos.org/nix/nix-2.30.2/install - - uses: cachix/cachix-action@v16 + - uses: cachix/cachix-action@v17 with: name: holochain-ci authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" @@ -64,11 +64,11 @@ jobs: runs-on: ubuntu-latest needs: [ nix_build ] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Maximize build space if: runner.os == 'Linux' - uses: AdityaGarg8/remove-unwanted-software@v2 + uses: AdityaGarg8/remove-unwanted-software@v5 with: remove-dotnet: "true" remove-android: "true" @@ -80,7 +80,7 @@ jobs: with: install_url: https://releases.nixos.org/nix/nix-2.30.2/install - - uses: cachix/cachix-action@v16 + - uses: cachix/cachix-action@v17 with: name: holochain-ci authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"