Skip to content

Commit

Permalink
Bump the dependencies group across 1 directory with 2 updates
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 2 updates in the / directory: [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain) and [taiki-e/install-action](https://github.com/taiki-e/install-action).


Updates `dtolnay/rust-toolchain` from 21dc36fb71dd22e3317045c0c31a3f4249868b17 to 7b1c307e0dcbda6122208f10795a713336a9b35a
- [Release notes](https://github.com/dtolnay/rust-toolchain/releases)
- [Commits](dtolnay/rust-toolchain@21dc36f...7b1c307)

Updates `taiki-e/install-action` from 2.42.19 to 2.42.27
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](taiki-e/install-action@ada21a8...0593da4)

---
updated-dependencies:
- dependency-name: dtolnay/rust-toolchain
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: taiki-e/install-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and elasticdog committed Aug 26, 2024
1 parent ce46d34 commit 2936642
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump-version-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
fetch-depth: 0

- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

Expand All @@ -56,7 +56,7 @@ jobs:
timeout-minutes: 5

- name: Install cargo-release
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-release

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-rust-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install beta Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: beta
- name: Set override to beta Rust
run: rustup override set beta
- name: Install cargo-nextest
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-nextest
- name: Compile tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-rust-miri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: nightly
components: miri
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/check-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: nightly
components: rustfmt
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable
components: clippy
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable
- name: Cache dependencies
Expand All @@ -72,7 +72,7 @@ jobs:
shared-key: stable-${{ matrix.platform }}
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-nextest
- name: Compile tests
Expand All @@ -95,11 +95,11 @@ jobs:
name: Get MSRV from package metadata
run: awk -F '"' '/rust-version/{ print "version=" $2 }' Cargo.toml >> "$GITHUB_OUTPUT"
- name: Install ${{ steps.msrv.outputs.version }} Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: ${{ steps.msrv.outputs.version }}
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: nightly
- name: Resolve minimal dependency versions instead of maximum
Expand All @@ -112,7 +112,7 @@ jobs:
shared-key: msrv-ubuntu-latest
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-nextest
- name: Compile tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-github-pages-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: nightly
- name: Build docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/draft-release-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y musl-tools
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable
targets: ${{ matrix.target }}
Expand All @@ -86,7 +86,7 @@ jobs:
timeout-minutes: 5
- name: Install cross
if: matrix.os == 'ubuntu-latest'
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cross
- name: Building release assets
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/preload-caches-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Checkout source code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable
- name: Cache dependencies
Expand All @@ -36,7 +36,7 @@ jobs:
shared-key: stable-${{ matrix.platform }}
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-nextest
- name: Check packages and dependencies for errors
Expand All @@ -53,11 +53,11 @@ jobs:
name: Get MSRV from package metadata
run: awk -F '"' '/rust-version/{ print "version=" $2 }' Cargo.toml >> "$GITHUB_OUTPUT"
- name: Install ${{ steps.msrv.outputs.version }} Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: ${{ steps.msrv.outputs.version }}
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: nightly
- name: Resolve minimal dependency versions instead of maximum
Expand All @@ -70,7 +70,7 @@ jobs:
shared-key: msrv-ubuntu-latest
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-nextest
- name: Check packages and dependencies for errors
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fetch-depth: 0

- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

Expand All @@ -35,7 +35,7 @@ jobs:
timeout-minutes: 5

- name: Install cargo-release
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-release

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-untagged-releases-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fetch-depth: 0

- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@21dc36fb71dd22e3317045c0c31a3f4249868b17
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

Expand All @@ -50,7 +50,7 @@ jobs:
timeout-minutes: 5

- name: Install cargo-release
uses: taiki-e/install-action@ada21a86dcbd8480ccdd77e11e167f51a002fb3e
uses: taiki-e/install-action@0593da407881e996340c22f60617ba9d95f2b995
with:
tool: cargo-release

Expand Down

0 comments on commit 2936642

Please sign in to comment.