-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update CI toolchain to stable #4051
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
Conversation
hmm, why is this not fixing the error? |
Hmm.. I thought it is because the GitHub Actions follows the main branch but it seems not the situtation I thought... |
917924c
to
5e9ab13
Compare
.github/workflows/ci.yaml
Outdated
@@ -263,11 +263,13 @@ jobs: | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v2 | |||
- uses: dtolnay/rust-toolchain@1.62.1 | |||
- uses: dtolnay/rust-toolchain@1.63.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- uses: dtolnay/rust-toolchain@1.63.0 | |
- uses: dtolnay/rust-toolchain@stable |
using stable is our common way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I applied the suggestion by amending d60baae commit.
7c0bdc2
to
5e9ab13
Compare
5e9ab13
to
d60baae
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! the difference between 1.63.0 and stable are confusing
Currently, the
cargo clippy
or the CICheck Rust code with rustfmt and clippy
job failed.It warns
clippy::derive_partial_eq_without_eq
as unknown lints but it exists in 1.63.0 release. You can see it through https://rust-lang.github.io/rust-clippy/master/.At the #4046, it updated the toolchain's version to
1.62.1
fromstable
and thestable
version was1.63.0
.But I see the pull request description while writing this pull request's description:
I don't know its context so it may be intended and if then, this pull request should be closed.