From 58f255c0c7ca430298023d1bc9b0c31535deaa1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jun 2023 07:31:23 -0500 Subject: [PATCH] Bump actions-rust-lang/setup-rust-toolchain from 1.4.4 to 1.5.0 (#9363) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions-rust-lang/setup-rust-toolchain](https://github.com/actions-rust-lang/setup-rust-toolchain) from 1.4.4 to 1.5.0.
Release notes

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

v1.5.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions-rust-lang/setup-rust-toolchain/compare/v1...v1.5.0

Changelog

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

[1.5.0] - 2023-05-29

Added

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.4&new-version=1.5.0)](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 e1e2e887c..cf96e715c 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.4 + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - 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.4 + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - 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.4 + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - name: Install Nushell # prior to [*standard library: bring the tests into the main CI*](#8525) @@ -160,7 +160,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.4 + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - name: Clippy run: cargo clippy --package nu_plugin_* ${{ matrix.flags }} -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect -A clippy::result_large_err @@ -189,7 +189,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.4 + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - 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 7007d9133..82911eb0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: echo "targets = ['${{matrix.target}}']" >> rust-toolchain.toml - name: Setup Rust toolchain and cache - uses: actions-rust-lang/setup-rust-toolchain@v1.4.4 + uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 - name: Setup Nushell uses: hustcer/setup-nu@v3