Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump taiki-e/install-action from 2.44.44 to 2.44.54 #612

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
build(deps): bump taiki-e/install-action from 2.44.44 to 2.44.54
Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.44.44 to 2.44.54.
- [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@v2.44.44...v2.44.54)

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

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Oct 28, 2024
commit 353e78f1fc204f7ddf35c93f4ac7dee07835058b
6 changes: 3 additions & 3 deletions .github/workflows/ci-post-merge.yml
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ jobs:
toolchain: ${{ matrix.version }}

- name: Install just, cargo-hack, cargo-nextest, cargo-ci-cache-clean
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: just,cargo-hack,cargo-nextest,cargo-ci-cache-clean

@@ -121,7 +121,7 @@ jobs:
toolchain: nightly

- name: Install cargo-hack & cargo-minimal-versions
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: cargo-hack,cargo-minimal-versions

@@ -138,7 +138,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1

- name: Install cargo-nextest
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: cargo-nextest

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@ jobs:
toolchain: ${{ matrix.version.version }}

- name: Install just, cargo-hack, cargo-nextest, cargo-ci-cache-clean
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: just,cargo-hack,cargo-nextest,cargo-ci-cache-clean

@@ -125,7 +125,7 @@ jobs:
toolchain: nightly

- name: Install just
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: just

2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
components: llvm-tools-preview

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: cargo-llvm-cov

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ jobs:
toolchain: nightly-2023-10-10

- name: Install just
uses: taiki-e/install-action@v2.44.44
uses: taiki-e/install-action@v2.44.54
with:
tool: just


Unchanged files with check annotations Beta

}
}
pin_project! {

Check failure on line 28 in actix-codec/src/framed.rs

GitHub Actions / check-external-types

Unapproved external type `pin_project_lite::__private::PinnedFieldsOf` referenced in public API
/// A unified `Stream` and `Sink` interface to an underlying I/O object, using the `Encoder` and
/// `Decoder` traits to encode and decode frames.
///
use pin_project_lite::pin_project;
pin_project! {

Check failure on line 11 in actix-utils/src/future/either.rs

GitHub Actions / check-external-types

Unapproved external type `pin_project_lite::__private::PinnedFieldsOf` referenced in public API
/// Combines two different futures that have the same output type.
///
/// Construct variants with [`Either::left`] and [`Either::right`].