-
Notifications
You must be signed in to change notification settings - Fork 67
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
update actions/checkout in GitHub Actions workflows to v3 #151
update actions/checkout in GitHub Actions workflows to v3 #151
Conversation
I made another pull request for those warnings: #157 Not sure what the actual reason for those new warnings is, but a new version of clippy (and Rust) was released after #152 was created, so maybe that could be it? PS: After taking a closer look, the failure occurred on a build using the nightly channel of Rust, so it was not the new stable release but some change from nightly. |
BTW, I think we should only run clippy on stable version |
Yes, we are using the nightly and it breaks way too often. I agree it would be better to let clippy run on stable |
076020c
to
26d69bf
Compare
Don't worry, I had worse. :D Less than a month is still OK. I just rebased this PR on top of the current |
OK, failed with a different error this time, and it's not clippy:
Unfortunately, I cannot reproduce this on my local machine, so I am not sure that I can provide a fix for that, too. |
OK, scratch that last comment about not providing a fix. I attempted to fix those errors in #158 and so far it looks good, builds are passing. So I will rebase this PR gain, if #158 is merged. |
Sparked by the comments about nightly clippy breaking the build too often (see <davidcole1340#151 (comment)>), this change will limit clippy to builds with a stable Rust version only.
Sparked by the comments about nightly clippy breaking the build too often (see <davidcole1340#151 (comment)>), this change will limit clippy to builds with a stable Rust version only.
26d69bf
to
a13f2b9
Compare
Rebased. |
Updates the
actions/checkout
action used in the GitHub Actions workflows to its newest version.Changes in actions/checkout:
As far as I can tell this should all be backwards compatible, so I do not expect any breakage.