From a29da8c95be4761426a450825cffeb6ef74ee0b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 19:49:07 +1300 Subject: [PATCH] Bump actions-rust-lang/setup-rust-toolchain from 1.4.2 to 1.4.3 (#8239) Bumps [actions-rust-lang/setup-rust-toolchain](https://github.com/actions-rust-lang/setup-rust-toolchain) from 1.4.2 to 1.4.3.
Changelog

Sourced from actions-rust-lang/setup-rust-toolchain's changelog.

[1.4.3] - 2023-02-21

Fixed

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions-rust-lang/setup-rust-toolchain&package-manager=github_actions&previous-version=1.4.2&new-version=1.4.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f55fc33f..c526e3ab4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.2 + uses: actions-rust-lang/setup-rust-toolchain@v1.4.3 - name: cargo fmt run: cargo fmt --all -- --check @@ -77,7 +77,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.2 + uses: actions-rust-lang/setup-rust-toolchain@v1.4.3 - name: Tests run: cargo test --workspace --profile ci --exclude nu_plugin_* ${{ matrix.flags }} @@ -101,7 +101,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.2 + uses: actions-rust-lang/setup-rust-toolchain@v1.4.3 - name: Install Nushell run: cargo install --locked --path=. --profile ci --no-default-features @@ -146,7 +146,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.2 + uses: actions-rust-lang/setup-rust-toolchain@v1.4.3 - name: Clippy run: cargo clippy --package nu_plugin_* ${{ matrix.flags }} -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect @@ -175,7 +175,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.2 + uses: actions-rust-lang/setup-rust-toolchain@v1.4.3 - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc91012d9..7559ee1ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: echo "targets = ['${{matrix.target}}']" >> rust-toolchain.toml - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.2 + uses: actions-rust-lang/setup-rust-toolchain@v1.4.3 - name: Setup Nushell uses: hustcer/setup-nu@v3