scala-steward-org/scala-steward

scala-cli updates not getting picked up

ckipp01 opened this issue · 3 comments

I have a scala-cli repo that I noticed isn't getting PRs sent in. I'm running the steward action on it and you can see here that it finds no updates for skan. (ignore the failure in the other repos, it's a mill issue). However there are updates for this repo. For example upickle is outdated and when you run it with scala-cli you can see this.

I guess it is because of this line


but skan uses the //> using dep syntax.

I guess it is because of this line

but skan uses the //> using dep syntax.

Ahh that could be it. I see the documentation is using dep now, so I went with that. I noticed that the way that scala-cli is handles is via an sbt export. Now that there is a json export instead, would that be preferable?

I see the documentation is using dep now, so I went with that.

We need to change Scala Steward to look also for //> using dep or //> using test.dep instead of just //> using lib.

I noticed that the way that scala-cli is handles is via an sbt export. Now that there is a json export instead, would that be preferable?

Yes, that would be better than using the sbt export. Since it is not related to ScalaCliAlg#containsBuild, I would prefer to do it in a separate PR.