Use orbs with version tag or latest

Is it possible to use an orb based on the major or minor version pin? For example:

Existing orb versions: 1.0.0, 1.0.1, 1.0.2

Then when I use it in my .circleci/config.yml it’d be nice to be able to point to my-org/my-orb@1.0 and have it pull the latest orb with that major/minor, so 1.0.2 to avoid updating all my config files each time we push a new orb version.

Any suggestions appreciated? Should we be doing this a different or better way?

1 Like

You should be able to do @1.0

orbs:
  foo-orb: my-org/my-orb@1.0

See: Orbs FAQ - CircleCI