From aa92e942051f2e6ad4285e00edbb5f6ad5871372 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 08:12:26 +0000 Subject: [PATCH] chore(deps): bump cachix/install-nix-action from 26 to 27 Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 26 to 27. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v26...V27) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/codecov.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/test.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ee2a00..0c58969 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: - serde,esplora steps: - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Check feature ${{ matrix.feature }} only run: nix develop .#stable -c cargo check --no-default-features --features=${{ matrix.feature }} - name: Check feature ${{ matrix.feature }} with defaults @@ -72,6 +72,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Nix - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Check rgb-core run: nix develop ".#${{ matrix.toolchain }}" -c cargo check --workspace --all-targets --all-features diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 238fae7..6c4edd2 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Nix - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Build run: nix develop .#codecov -c cargo build --release - name: Test diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e8e3c0e..7e2a116 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Nix - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Formatting run: nix develop .#nightly -c cargo fmt --all -- --check clippy: @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Nix - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Clippy run: nix develop .#stable -c cargo clippy --workspace --all-features --all-targets doc: @@ -31,6 +31,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Nix - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Doc run: nix develop .#nightly -c cargo doc --workspace --all-features diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7325c0c..f31e737 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Nix - uses: cachix/install-nix-action@v26 + uses: cachix/install-nix-action@V27 - name: Build & test run: nix develop .#stable -c cargo test --workspace --all-features --no-fail-fast