Closed as not planned
Description
What problem does this solve or what need does it fill?
The Dependencies github workflow runs when a Cargo.toml
is modified even if there were no changes to the dependencies. This caused CI to fail when I happened to add an example shortly after a dependency was deprecated.
What solution would you like?
Commit the Cargo.lock
(as per official recommendation) and run the workflow when that file changes instead of Cargo.toml
.
For completeness, maybe add a workflow to ensure that Cargo.lock
is up-to-date.
What alternative(s) have you considered?
Leave as is.