dagger / dagger

An engine to run your pipelines in containers

Home Page:https://dagger.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ Dependency updates

sagikazarmark opened this issue · comments

What are you trying to do?

Automate/make dependency updates easier.

Dependency update strategies:

  1. Update one dependency because I need something from a newer version:
dagger install github.com/...
  1. Update all dependencies to latest (due to Dagger engine compatibility or because I just want to update everything to the latest version):

Ideal solution:

dagger install -u

Why is this important to you?

No response

How are you currently working around this?

https://twitter.com/sagikazarmark/status/1788527291800170928

cat dagger.json | jq -r '.dependencies[].source' | cut -d '@' -f 1 | xargs -L1 dagger install

Yep, that's covered in:

Closing as duplicate